Weekly Check #142
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Weekly Check | |
on: | |
schedule: | |
- cron: "0 0 * * Mon" | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
default-features-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: cargo build --verbose | |
- name: Run tests | |
run: cargo test --verbose all_cards -- --ignored | |
unknown-variants-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: cargo build --verbose | |
- name: Run tests | |
run: cargo test --features unknown_variants --verbose all_cards -- --ignored | |
unknown-variants-slim-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: cargo build --verbose | |
- name: Run tests | |
run: cargo test --features unknown_variants_slim --verbose all_cards -- --ignored |