Skip to content

Commit

Permalink
Added CI (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgecardleitao authored Nov 20, 2023
1 parent 09a4c48 commit c1b700e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Test

on: [push, pull_request]

jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: test
run: cargo test

0 comments on commit c1b700e

Please sign in to comment.