Skip to content

try to force m1 runner #28

try to force m1 runner

try to force m1 runner #28

Workflow file for this run

name: Unit testing
on: [push]
jobs:
build:
strategy:
matrix:
include:
- os: windows-latest
os-name: windows
arch: x64
- os: ubuntu-latest
os-name: ubuntu
arch: x64
- os: macos-latest
os-name: macOS-m1
arch: arm64
- os: macos-13
os-name: macOS
arch: x64
racket: [ '8.0', 'current' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
path: src
- name: "Install Racket"
uses: Bogdanp/setup-racket@v1.11
with:
version: ${{ matrix.racket }}
- name: "Install generic-flonum as package"
run: raco pkg install --no-cache --auto --name generic-flonum src/
- name: "Unit tests"
run: |
raco test .