Skip to content

Merge pull request #25 from shaqed/main #21

Merge pull request #25 from shaqed/main

Merge pull request #25 from shaqed/main #21

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.name }}
strategy:
fail-fast: false
matrix:
config:
- os: ubuntu-latest,
arch: x64,
- os: ubuntu-latest,
arch: x32,
- os: macos-latest,
arch: x64,
steps:
- uses: actions/checkout@v3
- name: '🛠️ Checkout submodules'
run: git submodule update --init
- name: build
run: make -j `nproc`
- name: rust-cargo
uses: actions-rs/[email protected]
with:
command: build