Skip to content

Commit

Permalink
Merge pull request #64 from palfrey/ci
Browse files Browse the repository at this point in the history
Add Github action to run tests
  • Loading branch information
Albibek authored Aug 13, 2021
2 parents 0900ee7 + 45a0904 commit c1b165d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
on:
push:
pull_request:

name: Continuous integration

jobs:
test:
name: Test suite
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Install capnproto
run: sudo apt-get install capnproto libcapnp-dev
- uses: actions-rs/[email protected]
with:
profile: minimal
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v1
- name: Build and test
uses: actions-rs/[email protected]
with:
command: test

0 comments on commit c1b165d

Please sign in to comment.