Skip to content

Merge branch 'box_immortal' #135

Merge branch 'box_immortal'

Merge branch 'box_immortal' #135

Workflow file for this run

name: Build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
rust: [stable]
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- uses: actions-rs/cargo@v1
with:
command: check
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Clippy formatting check
run: cargo clippy --verbose --no-deps