chore(ci): run test fixtures

This commit is contained in:
Orhun Parmaksız 2022-05-21 15:46:37 +03:00
parent 4d16e65edb
commit 685d9607c8
No known key found for this signature in database
GPG Key ID: F83424824B3E4B90
1 changed files with 25 additions and 1 deletions

View File

@ -8,7 +8,7 @@ on:
branches:
- master
schedule:
- cron: "0 0 * * 0"
- cron: '0 0 * * 0'
jobs:
check:
@ -58,6 +58,30 @@ jobs:
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}
fixtures:
name: Test fixtures
runs-on: ubuntu-20.04
steps:
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
- name: Checkout the repository
uses: actions/checkout@master
- name: Build the project
uses: actions-rs/cargo@v1
with:
command: build
args: --locked --verbose
- name: Run test fixtures
shell: bash
run: ./test-fixtures.sh
working-directory: fixtures
env:
DEBUG: true
clippy:
name: Lints
runs-on: ubuntu-20.04