Skip to content

Commit

Permalink
Migrate circle-ci job to a github action (#90)
Browse files Browse the repository at this point in the history
* Add analogous gh action for circle-ci build check

* Delete .circleci and its config
  • Loading branch information
cooldracula authored Aug 9, 2024
1 parent dd6a54c commit f14d88b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
12 changes: 0 additions & 12 deletions .circleci/config.yml

This file was deleted.

13 changes: 13 additions & 0 deletions .github/workflows/check-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: "Check build"
on: ["push"]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Print version
run: cargo --version
- name: Run check
run: cargo install cargo-risczero && cargo risczero install && cargo check

0 comments on commit f14d88b

Please sign in to comment.