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 cdca4b7
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
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: cargo build --release

0 comments on commit cdca4b7

Please sign in to comment.