Skip to content

Commit 14cb9df

Browse files
committed
Add github workflow
1 parent 31acf11 commit 14cb9df

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/ci-workflow.yml

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

0 commit comments

Comments
 (0)