Skip to content

Commit

Permalink
feat: add CI test
Browse files Browse the repository at this point in the history
  • Loading branch information
raimundo-henriques committed Nov 2, 2023
1 parent 69e5730 commit dba8a0d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
on: [push]

name: CI

jobs:
build_and_test:
name: Test Rust
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Cache target
uses: actions/cache@v2
env:
cache-name: cache-default-target-and-lockfile
with:
path: |
target
Cargo.lock
~/.rustup
key: ${{ env.cache-name }}-${{ hashFiles('**/Cargo.toml') }}
- run: cargo build --all-features
- run: cargo test --all-features
- run: cargo clippy -- -Dwarnings

0 comments on commit dba8a0d

Please sign in to comment.