Skip to content

Commit

Permalink
chore: add CI (#24)
Browse files Browse the repository at this point in the history
* chore: add CI

* fix yaml maybe

* ghghghghgh

* fix the clippy thingy
  • Loading branch information
hawkw authored Dec 12, 2019
1 parent 5952c11 commit ff48f57
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
uses: actions-rs/[email protected]
with:
command: build
- name: Test
uses: actions-rs/[email protected]
with:
command: test
clippy:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v1
- name: rust-clippy-check
uses: actions-rs/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ff48f57

Please sign in to comment.