Bumps auxtools to latest #17
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check compile | |
on: pull_request | |
jobs: | |
linux-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
target: i686-unknown-linux-gnu | |
override: true | |
- name: Install g++-multilib | |
run: | | |
sudo apt update | |
sudo apt install g++-multilib -y | |
- name: Check formatting | |
run: cargo fmt --all -- --check | |
- name: Check auxmos build | |
run: cargo check --target=i686-unknown-linux-gnu --release --features "all_reaction_hooks katmos" |