Skip to content

Commit

Permalink
feat: add github CI
Browse files Browse the repository at this point in the history
  • Loading branch information
raklaptudirm committed Mar 30, 2024
1 parent 3304ba5 commit 81a475d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Mexx - Continuous Integration

on:
- push
- pull_request

env:
CARGO_TERM_COLOR: always

jobs:
build_and_test:
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest

name: Cargo - Build & Test - ${{ matrix.os }}
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- run: rustup update stable && rustup default stable

- run: cargo clippy --verbose
- run: cargo build --verbose
- run: cargo test --verbose

0 comments on commit 81a475d

Please sign in to comment.