Skip to content

Commit

Permalink
Merge pull request #1 from evo-lua/basic-test-workflow
Browse files Browse the repository at this point in the history
Set up a GitHub Actions workflow to test the action
  • Loading branch information
rdw-software authored May 29, 2023
2 parents 57ee780 + 4ee5151 commit 67371b0
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/hello-world.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("Hello from GItHub Actions!")
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Test evo-setup-action

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

jobs:
gha-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
- name: Checkout Git repository
uses: actions/checkout@v3

- name: Set up Evo runtime
uses: evo-lua/evo-setup-action@main
with:
version: 'v0.0.3'

- name: Run Lua script
run: |
evo .github/hello-world.lua
shell: bash

0 comments on commit 67371b0

Please sign in to comment.