remove anchor from github workflows

master
Edward Shen 2021-07-09 20:59:23 -04:00
parent 52ca595029
commit 3ec4d1c125
Signed by: edward
GPG Key ID: 19182661E818369F
1 changed files with 15 additions and 13 deletions

View File

@ -3,26 +3,28 @@ name: Build and test
on:
push:
branches: [ master ]
paths-ignore: &paths
- "docs/**"
- "settings.sample.yaml"
- "README.md"
- "LICENSE"
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
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose