Skip to content

Commit

Permalink
Add tests workflow
Browse files Browse the repository at this point in the history
Maybe works :-)
  • Loading branch information
isbm committed Oct 28, 2024
1 parent 4d4f7af commit 442ecda
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/all_the_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Unit/Integration Testing

on:
push:
branches:
- "master"
pull_request:

env:
CARGO_TERM_COLOR: always
# RUSTFLAGS: -D warnings

jobs:
unit_tests:
name: Unit and Static Type tests
runs-on: ubuntu-latest

steps:
- name: Install latest nextest release
uses: taiki-e/install-action@nextest

- uses: actions/checkout@v2
- name: Run test target
run: |
make test

0 comments on commit 442ecda

Please sign in to comment.