Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
petscheit committed Apr 3, 2024
2 parents 882d398 + 68a546f commit dfaf3af
Show file tree
Hide file tree
Showing 14 changed files with 1,630 additions and 466 deletions.
Binary file added .github/readme.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: CI

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable

- name: Install clippy
run: rustup component add clippy

- name: Install rustfmt
run: rustup component add rustfmt

- name: Run clippy for native
run: cargo clippy --all --all-targets -- -D warnings

- name: Run fmt
run: cargo fmt -- --check

- name: Run tests
run: cargo test --all --all-targets -- --nocapture
Loading

0 comments on commit dfaf3af

Please sign in to comment.