Skip to content

Update Python install in CI #11

Update Python install in CI

Update Python install in CI #11

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
build_and_test:
strategy:
matrix:
os: [macos-13, macos-12]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install System Dependencies
run: brew install nasm
- name: Install Python Dependencies
run: |
python -m pip install --upgrade pip
python -m pip install toml
- name: Build
run: ./launch MAKE
- name: Test
run: make test