remove anchor from github workflows
This commit is contained in:
parent
52ca595029
commit
3ec4d1c125
1 changed files with 15 additions and 13 deletions
10
.github/workflows/build_and_test.yml
vendored
10
.github/workflows/build_and_test.yml
vendored
|
@ -3,23 +3,25 @@ name: Build and test
|
|||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
paths-ignore: &paths
|
||||
paths-ignore:
|
||||
- "docs/**"
|
||||
- "settings.sample.yaml"
|
||||
- "README.md"
|
||||
- "LICENSE"
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
paths-ignore: *paths
|
||||
paths-ignore:
|
||||
- "docs/**"
|
||||
- "settings.sample.yaml"
|
||||
- "README.md"
|
||||
- "LICENSE"
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Build
|
||||
|
|
Loading…
Reference in a new issue