Skip to content

Commit fc80b55

Browse files
committed
ci: adds a basic CI pipeline
1 parent faf8000 commit fc80b55

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- ecc/**
9+
pull_request:
10+
paths:
11+
- ecc/**
12+
13+
jobs:
14+
ecc-check:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- name: Update Rust
19+
run: rustup update stable && rustup default stable
20+
- run: cargo install --path crates/ecc-cli
21+
- run: ecc-cli ecc check

0 commit comments

Comments
 (0)