Skip to content

Commit

Permalink
Add ci action
Browse files Browse the repository at this point in the history
  • Loading branch information
gaymeowing committed Jul 28, 2024
1 parent 5fc4731 commit b3a5676
Show file tree
Hide file tree
Showing 2 changed files with 496 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Install Lune
run: |
curl -L https://github.com/lune-org/lune/releases/latest/download/lune-linux -o lune
chmod +x lune
sudo mv lune /usr/local/bin/
- name: Run Tests
run: |
find libs -name "*test.luau" | while read -r file; do
echo "Running test: $file"
lune "$file"
done
Loading

0 comments on commit b3a5676

Please sign in to comment.