Skip to content

Commit

Permalink
Try to make CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanuppal authored May 18, 2024
1 parent aff0317 commit a06ccaa
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on:
pull_request:
push:
branches:
- main

jobs:
build_and_test:
strategy:
matrix:
os: [macos-14, 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: $(which pip3 || which pip) install toml
- name: Build
run: ./launch MAKE
- name: Test
run: make test

0 comments on commit a06ccaa

Please sign in to comment.