diff options
| -rw-r--r-- | .github/workflows/main.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 000000000..300978feb --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,20 @@ +name: build + +on: [push] + +jobs: + build: + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macOS-latest] + + runs-on: ${{ matrix.os }} + + steps: + - uses: actions/checkout@v1 + - uses: xmake-io/github-action-setup-xmake@v1 + with: + xmake-version: branch@${GITHUB_REF##*/} + - name: tests + run: | + xmake lua -v -D tests/run.lua |
