Skip to content

Commit

Permalink
add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Creative0708 committed Feb 20, 2024
1 parent adc3c33 commit b3825d3
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@

name: CI

on:
push:
pull_request:
workflow_dispatch:

permissions:
contents: read

jobs:
test:
name: Test suite
runs-on:
- ubuntu-latest
- windows-latest
timeout-minutes: 2
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- run: cargo test

test-release:
name: Test suite
runs-on:
- ubuntu-latest
- windows-latest
timeout-minutes: 2
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- run: cargo test --release

0 comments on commit b3825d3

Please sign in to comment.