Skip to content

Commit f553155

Browse files
committed
Add github actions CI
1 parent 69830bb commit f553155

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
on: [push]
2+
3+
name: CI
4+
5+
jobs:
6+
rust_tests:
7+
name: Run Rust tests
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
matrix:
11+
os: ["macos-latest", "ubuntu-latest", "windows-latest"]
12+
fail-fast: false
13+
steps:
14+
- uses: actions/checkout@master
15+
- run: powershell.exe scripts/symlinks-to-hardlinks.ps1
16+
if: matrix.os == 'windows-latest'
17+
- uses: actions-rs/cargo@v1
18+
with:
19+
command: build
20+
args: --verbose --all
21+
- uses: actions-rs/cargo@v1
22+
with:
23+
command: test
24+
args: --verbose --all

0 commit comments

Comments
 (0)