Skip to content

Commit 5e09ea0

Browse files
authored
Add Github Actions (#10)
* Add Github Actions This PR adds CI with GitHub Actions using the `rust-lang/simpleinfra` simple ci github action.
1 parent 89ce678 commit 5e09ea0

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/rust.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Rust
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ${{ matrix.os }}-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: rust-lang/simpleinfra/github-actions/simple-ci@master
11+
strategy:
12+
matrix:
13+
os: [ubuntu, windows, macos]

0 commit comments

Comments
 (0)