Skip to content

Commit

Permalink
Added CI
Browse files Browse the repository at this point in the history
- Added GitHub workflow 'PK-Rust Tests'
  • Loading branch information
CatRass committed Oct 24, 2024
1 parent 8d673e2 commit 6cd2139
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on:
push:
branches:
- main

name: CI

jobs:
build_and_test:
name: PK-Rust Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: test
# args: --release --all-features

0 comments on commit 6cd2139

Please sign in to comment.