Skip to content

Commit

Permalink
Fix Rust build action
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasjelonek authored Mar 14, 2024
1 parent 348c61e commit 361570f
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ env:

jobs:
build:

name: Build tftp
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
- uses: actions-rs/cargo@v1
with:
command: build
args: --release --verbose

0 comments on commit 361570f

Please sign in to comment.