Skip to content

Commit

Permalink
Merge pull request #62 from saihaj/ci
Browse files Browse the repository at this point in the history
ci: setup GH actions for tests
  • Loading branch information
tailhook authored Feb 12, 2022
2 parents be86bc9 + 07c557b commit 64fb5af
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: ci
on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2

- name: Cache Rust
uses: Swatinem/rust-cache@v1

- name: Test Rust
run: cargo test

0 comments on commit 64fb5af

Please sign in to comment.