Skip to content

point-on-surface, XML file outline calculations #5

point-on-surface, XML file outline calculations

point-on-surface, XML file outline calculations #5

Workflow file for this run

name: Test
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
strategy:
matrix:
job:
- os: ubuntu-latest
arch: x86_64-unknown-linux-gnu
- os: windows-latest
arch: x86_64-pc-windows-msvc
runs-on: ${{ matrix.job.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
target: ${{ matrix.job.arch }}
- name: Build
run: cargo build --release --target ${{ matrix.job.arch }}
- name: Run test
run: cargo test