Skip to content

Commit

Permalink
Replace C++ CI with Rust CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Oom committed Mar 16, 2024
1 parent ac2611f commit d6a328d
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 22 deletions.
2 changes: 0 additions & 2 deletions .dockerignore

This file was deleted.

20 changes: 0 additions & 20 deletions .github/workflows/c++-ci.yaml

This file was deleted.

22 changes: 22 additions & 0 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: build and test

on:
push:
branches: [ rust_rewrite ]
pull_request:
branches: [ rust_rewrite ]
schedule:
- cron: "0 3 1 * *"

env:
CARGO_TERM_COLORS: always

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- run: rustup update stable && rustup default stable
- run: cargo build --verbose
- run: cargo test --verbose

0 comments on commit d6a328d

Please sign in to comment.