Skip to content

Rewrite meshing

Rewrite meshing #549

Workflow file for this run

name: Check native builds
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -Dwarnings
jobs:
check:
strategy:
matrix:
target: [
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/rust-cache
with:
cache-key: check-x86_64
- uses: ./.github/actions/rust-check
with:
target: ${{ matrix.target }}