Skip to content

Commit 6c29561

Browse files
authored
Merge pull request #225 from 404Setup/ci-workflow-1056801778415186821
Add GitHub Actions CI workflow
2 parents 1083c48 + 43d0ba9 commit 6c29561

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ "master", "main" ]
6+
pull_request:
7+
branches: [ "master", "main" ]
8+
9+
env:
10+
CARGO_TERM_COLOR: always
11+
12+
jobs:
13+
test:
14+
name: Test
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- name: Set up Rust
19+
uses: dtolnay/rust-toolchain@nightly
20+
- name: Build
21+
run: cargo build --verbose
22+
- name: Run tests
23+
run: cargo test --verbose

0 commit comments

Comments
 (0)