Skip to content

Commit

Permalink
Create main.yml to run tests as a workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
subvertnormality authored Mar 17, 2024
1 parent 77b6bd2 commit dd815b6
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Run tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
Run-tests-on-Ubuntu:
name: Run tests on Ubuntu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: leafo/gh-actions-lua@v10
with:
luaVersion: "5.1.5"
- run: ./test.sh

0 comments on commit dd815b6

Please sign in to comment.