mirror of
https://github.com/yuzu-emu/liftinstall
synced 2024-11-23 14:23:41 +00:00
Add test Rust build script
This commit is contained in:
parent
56cdaabbae
commit
3abc0a1b11
1 changed files with 27 additions and 0 deletions
27
.github/workflows/test-build.yml
vendored
Normal file
27
.github/workflows/test-build.yml
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
name: Rust
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest, macOS-latest]
|
||||
|
||||
steps:
|
||||
- name: Install Rust
|
||||
- uses: hecrj/setup-rust-action@master
|
||||
with:
|
||||
rust-version: stable
|
||||
|
||||
- name: Node/Yarn
|
||||
- uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: '10.x'
|
||||
- run: npm install -g yarn
|
||||
|
||||
- uses: actions/checkout@latest
|
||||
- name: Build
|
||||
run: cargo build --verbose
|
Loading…
Reference in a new issue