Skip to content

Merge pull request #29 from mah0x211/change-the-official-lua-url #66

Merge pull request #29 from mah0x211/change-the-official-lua-url

Merge pull request #29 from mah0x211/change-the-official-lua-url #66

Workflow file for this run

name: Test
on:
push
jobs:
test:
strategy:
matrix:
go-version: [1.20.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
# -
# name: Install APT Packages
# run: |
# sudo apt update
# sudo apt-get -V install -y make gcc
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: make test
- name: Codecov
uses: codecov/codecov-action@v3