Skip to content

Place the cylinder at the center of the coordinates #7

Place the cylinder at the center of the coordinates

Place the cylinder at the center of the coordinates #7

Workflow file for this run

name: check
on:
push:
branches: ["main"]
pull_request:
jobs:
build:
strategy:
matrix:
include:
- name: Linux
os: ubuntu-latest
target: x86_64-unknown-linux-gnu
- name: Windows
os: windows-latest
target: x86_64-pc-windows-msvc
- name: macOS
os: macos-latest
target: aarch64-apple-darwin
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
target: ${{ matrix.target }}
override: true
- name: Check
uses: actions-rs/cargo@v1
with:
command: check
args: --target ${{ matrix.target }} --workspace --all