mirror of
https://github.com/amigan/rustypaste-pretty.git
synced 2024-11-21 20:09:48 -05:00
chore(ci): run test fixtures
This commit is contained in:
parent
4d16e65edb
commit
685d9607c8
1 changed files with 25 additions and 1 deletions
26
.github/workflows/ci.yml
vendored
26
.github/workflows/ci.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue