Skip to content

Working custom structs #49

Working custom structs

Working custom structs #49

Workflow file for this run

name: Rust
on:
push:
branches: ['master']
pull_request:
branches: ['master']
jobs:
build_and_test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Prepare
if: runner.os == 'Linux'
run: |
sudo apt-get update
- name: Build
run: |
cargo build --verbose
- name: Run tests
run: cargo test --lib --verbose