Skip to content

Commit

Permalink
Merge pull request #27 from Pommaq/tests
Browse files Browse the repository at this point in the history
Added Build+test step for multiple OS
  • Loading branch information
mufeedvh authored Feb 15, 2024
2 parents 7089c89 + 30c1b55 commit 0e222a9
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
on:
push:
pull_request:

name: CI
jobs:
build_and_test:
name: OS Test
strategy:
fail-fast: false
matrix:
rust-version:
- nightly
- stable
os:
- ubuntu-latest
- windows-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust-version }}
- name: Build
run: cargo build --all --verbose
- name: Test
run: cargo test --all --verbose
lint:
name: Clippy and fmt
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- name: Check formatting
run: cargo fmt --check
- name: Check for clippy lints
run: cargo clippy

0 comments on commit 0e222a9

Please sign in to comment.