diff options
author | actboy168 <actboy168@gmail.com> | 2020-01-02 10:13:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-02 10:13:01 +0800 |
commit | b000a92471647630926d820f90c8cc0b88e233eb (patch) | |
tree | d87bf639166c190b4522cfabb8675ccb767f3653 /.github/workflows/build.yml | |
parent | 18083747fe324811dd0b25a1f0a0a50623003b40 (diff) | |
download | lua-language-server-b000a92471647630926d820f90c8cc0b88e233eb.zip |
Create build.yml
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..ad749c06 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,16 @@ +name: build +on: push +jobs: + compile: + runs-on: ${{ matrix.os }}-latest + strategy: + fail-fast: false + matrix: + os: [windows, ubuntu, macos] + steps: + - uses: actions/checkout@v1 + with: + ref: refs/heads/master + submodules : recursive + - uses: actboy168/setup-luamake@master + - run: luamake |