mirror of
https://github.com/xenia-project/xell-rs.git
synced 2024-11-23 03:19:49 +00:00
CI
This commit is contained in:
parent
8b2af7bdec
commit
4d52795b7d
20
.github/workflows/ci.yml
vendored
Normal file
20
.github/workflows/ci.yml
vendored
Normal 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
|
Loading…
Reference in New Issue
Block a user