Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
Rust pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Oberaigner committed Mar 13, 2024
1 parent 9e39bc5 commit 8640529
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,26 @@ env:
CARGO_TERM_COLOR: always

jobs:
build:
check:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Rust Build
run: cd rust; cargo check

test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Rust Run tests
run: cd rust; cargo test

fmt:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Rust Run tests
run: cd rust; cargo fmt

0 comments on commit 8640529

Please sign in to comment.