Skip to content
This repository was archived by the owner on May 20, 2024. It is now read-only.

Commit 3c07c10

Browse files
committed
Enable GitHub Actions
1 parent dfa358a commit 3c07c10

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/ci.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
schedule: [cron: "40 1 * * *"]
7+
8+
jobs:
9+
test:
10+
name: Rust ${{matrix.rust}}
11+
runs-on: ubuntu-latest
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
rust: [nightly, beta, stable, 1.37.0]
16+
steps:
17+
- uses: actions/checkout@v2
18+
- uses: dtolnay/rust-toolchain@master
19+
with:
20+
toolchain: ${{matrix.rust}}
21+
- run: cargo check
22+
- run: cargo check --manifest-path binary/Cargo.toml

0 commit comments

Comments
 (0)