Skip to content

Commit

Permalink
chore: add base ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Decodetalkers committed Aug 23, 2023
1 parent e7a4c49 commit e4f5de9
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Rust

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

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

1 comment on commit e4f5de9

@Decodetalkers
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh, shit, pipewire is not installed..

Please sign in to comment.