Skip to content

Commit

Permalink
ci: fix rust workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
polypixeldev authored Jul 6, 2023
1 parent de19fe6 commit 1d79db8
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Rust Build
name: Rust Check

on:
push:
Expand All @@ -10,10 +10,14 @@ env:
CARGO_TERM_COLOR: always

jobs:
build:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly

- name: Build
working-directory: ./rust
run: cargo build --release --verbose
run: cargo check --verbose

0 comments on commit 1d79db8

Please sign in to comment.