This commit is contained in:
Justin Moore 2021-05-30 14:07:37 -05:00
parent 8b2af7bdec
commit 4d52795b7d

20
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,20 @@
on: [push, pull_request]
name: Continuous Integration
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
components: rust-src # needed to cross-compile std
profile: minimal
toolchain: nightly
override: true
- uses: actions-rs/cargo@v1
with:
command: check
args: --all --target=powerpc64.json -Zbuild-std=core,alloc