GitHub Actions™

pull/6/head
ʇʞʌp 4 years ago committed by GitHub
parent 170d8791d4
commit 1650e7bf34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,26 @@
name: Rust
on: [push]
jobs:
build-x86_64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
Loading…
Cancel
Save