mirror of https://github.com/sgoudham/git-view.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
312 B
YAML
22 lines
312 B
YAML
2 years ago
|
name: build
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
paths-ignore:
|
||
|
- 'src/**'
|
||
|
- 'tests/**'
|
||
|
- '.github/**'
|
||
|
branches:
|
||
|
- '**'
|
||
|
pull_request:
|
||
|
paths-ignore:
|
||
|
- 'src/**'
|
||
|
- 'tests/**'
|
||
|
- '.github/**'
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- run: 'echo "No build required"'
|