Skip to content

Commit

Permalink
enable CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Dec 13, 2022
1 parent 1a09da5 commit a115e7a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Rust

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v2
- name: tests
run: cargo test
- name: docs
run: cargo doc

0 comments on commit a115e7a

Please sign in to comment.