Skip to content

Commit

Permalink
Adds CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ultimaweapon committed Sep 18, 2024
1 parent ae9e50e commit 3352992
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 @@
name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
name: Build
strategy:
matrix:
os: [macos-12, macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Check Rust styles
run: cargo fmt --check
- name: Lint
run: cargo clippy -- -D warnings
- name: Run tests
run: cargo test --workspace

0 comments on commit 3352992

Please sign in to comment.