Skip to content

extend known formats #228

extend known formats

extend known formats #228

Workflow file for this run

name: Build and Test
on:
workflow_dispatch:
push:
paths:
- 'build.rs'
- '.github/**/*.yml'
- 'src/**/*.rs'
- 'tests/**/*.rs'
- 'Cargo.toml'
- 'Cargo.lock'
env:
CARGO_TERM_COLOR: always
CARGO_NET_RETRY: 10
RUST_BACKTRACE: 1
RUSTC_PARALLEL_COMPILER: true
jobs:
build:
name: Build and Test
strategy:
fail-fast: false
matrix:
os: [macos-14, macos-latest, windows-latest, ubuntu-latest]
include:
- os: macos-14
name: 'macOS ARM'
- os: macos-latest
name: 'macOS x86'
- os: windows-latest
name: 'Windows'
- os: ubuntu-latest
name: 'Ubuntu'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test