Skip to content

Commit

Permalink
Migrate from GitLab CI to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
powergee committed Jun 12, 2024
1 parent b85e288 commit a59e2b8
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 49 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Test CIRC

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
submodules: recursive

- name: Install Rust nightly toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: rustfmt, clippy

- name: Install cargo-audit
run: cargo install cargo-audit

- name: Run checks
run: |
cargo check --verbose
cargo fmt -- --check
cargo clippy -- -D warnings
cargo audit
- name: Run tests
run: |
cargo test
cargo test --release
49 changes: 0 additions & 49 deletions .gitlab-ci.yml

This file was deleted.

0 comments on commit a59e2b8

Please sign in to comment.