Skip to content

Commit

Permalink
Add simple PR tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lustefaniak committed Sep 25, 2023
1 parent beee4ee commit 64261f5
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Test Suite
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize]

jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: check

test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: nextest run

0 comments on commit 64261f5

Please sign in to comment.