Skip to content

Commit

Permalink
chore: add tests workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
iankressin committed Nov 1, 2024
1 parent 76f44f6 commit a043b56
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Tests

on:
push:
branches:
- '**'
pull_request:
branches:
- '**'

jobs:

test:
name: Run tests
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Run tests
run: cargo test

0 comments on commit a043b56

Please sign in to comment.