Skip to content

Commit

Permalink
[ci] Add a github action to test the rust stack build
Browse files Browse the repository at this point in the history
Signed-off-by: Douglas Reis <[email protected]>
  • Loading branch information
engdoreis authored and marnovandermaas committed Jul 31, 2023
1 parent 0d97e21 commit 38dc3cd
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Rust

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: cd sw/rust;cargo build --verbose --release

0 comments on commit 38dc3cd

Please sign in to comment.