Skip to content

Commit 1010549

Browse files
committedMay 28, 2024·
ci: add github workflows
1 parent 93b2ec0 commit 1010549

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
 

‎.github/workflows/ci.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Rust Splitwise CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@v2
18+
19+
- name: Set up Rust
20+
uses: actions-rs/toolchain@v1
21+
with:
22+
toolchain: stable
23+
override: true
24+
25+
- name: Build
26+
run: cargo build --verbose
27+
28+
- name: Run tests
29+
run: cargo test --verbose

0 commit comments

Comments
 (0)
Please sign in to comment.