Skip to content

Commit

Permalink
Migrate to GitHub Actions from CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
leee committed Dec 8, 2023
1 parent 0f5889d commit c6bbff1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 21 deletions.
21 changes: 0 additions & 21 deletions .circleci/config.yml

This file was deleted.

14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: CI

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
container: rust:buster
steps:
- uses: actions/checkout@v3
- run: rm -f target/
- run: cargo build
- run: ./target/debug/sdstatus -h

0 comments on commit c6bbff1

Please sign in to comment.