Skip to content

Commit

Permalink
chore: Create build workflow
Browse files Browse the repository at this point in the history
chore: Create build workflow
  • Loading branch information
alexdemb committed May 14, 2024
1 parent af52856 commit 980023c
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Rust

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

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt install -y libdbus-1-dev
- name: Build
run: cd code && cargo build --verbose
- name: Run tests
run: cd code && cargo test --verbose

0 comments on commit 980023c

Please sign in to comment.