Skip to content

Commit

Permalink
Migrate to github workflow
Browse files Browse the repository at this point in the history
Migrate tests from circle ci to github workflow.
  • Loading branch information
psachs committed Apr 19, 2024
1 parent 3a0bbb9 commit 796f652
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 14 deletions.
14 changes: 0 additions & 14 deletions .circleci/config.yml

This file was deleted.

23 changes: 23 additions & 0 deletions .github/workflows/check-and-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Check and build rust library

on:
pull_request:
branches:
- master
push:
branches:
- master

jobs:
check-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Stable with rustfmt and clippy
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.63
components: rustfmt, clippy
- run: cargo build
- run: cargo test

0 comments on commit 796f652

Please sign in to comment.