Skip to content

Commit

Permalink
chore: add CI workflow for pull requests and pushes to master
Browse files Browse the repository at this point in the history
  • Loading branch information
sharunkumar committed Jan 13, 2025
1 parent dc349de commit a66bf13
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI

on:
pull_request:
branches:
- master
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- run: sudo apt install libdbus-1-dev pkg-config
- run: cargo build --release

0 comments on commit a66bf13

Please sign in to comment.