Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
gaymeowing committed Jul 28, 2024
1 parent 3cf63bf commit de72f99
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,23 @@ on:

jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- name: Windows x86_64
runner-os: windows-latest

- name: Linux x86_64
runner-os: ubuntu-latest

- name: macOS x86_64
runner-os: macos-13

- name: macOS aarch64
runner-os: macos-14
name: CI - ${{ matrix.name }}
runs-on: ${{ matrix.runner-os }}

steps:
- name: Checkout repository
Expand All @@ -23,7 +39,8 @@ jobs:
run: foreman install

- name: Run Tests
shell: bash
run: |
find libs -name "*test.luau" | while read -r file; do
lune run "$file"
lune run $file
done

0 comments on commit de72f99

Please sign in to comment.