Skip to content

Add xkcd.png

Add xkcd.png #335

Workflow file for this run

name: Rust
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-14]
rust: [stable]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build with only libm
run: cargo build --no-default-features --features libm
- name: Build with all features
run: cargo build --all-features
- name: Run tests
run: cargo test --verbose