Skip to content

Commit

Permalink
add action
Browse files Browse the repository at this point in the history
  • Loading branch information
NYBACHOK committed Sep 30, 2024
1 parent 62c50e7 commit 43a8c9b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Run tests

on:
# Run on any PR
pull_request:

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout # Clone git repository
uses: actions/checkout@v3

- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable

- name: Execute tests
run: cargo test --features=it --no-fail-fast

0 comments on commit 43a8c9b

Please sign in to comment.