diff options
author | numToStr <vikasraj1911@gmail.com> | 2021-12-14 14:27:29 +0530 |
---|---|---|
committer | numToStr <vikasraj1911@gmail.com> | 2021-12-14 18:57:58 +0530 |
commit | 53e6e99cbf181a4725d4b0c14dbebc08ef287005 (patch) | |
tree | cc7af82a9627f9d5e07741e888eb725e5bcba885 /.github/workflows | |
parent | 5ca649a1d87a7a557e7bf44fad73309ba43d8376 (diff) | |
download | lua-language-server-53e6e99cbf181a4725d4b0c14dbebc08ef287005.zip |
change: replace `macos` with `darwin`
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 875cca16..8a0d3efd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,11 +17,10 @@ env: jobs: compile: strategy: - fail-fast: false matrix: job: - - { os: ubuntu-18.04, target: linux } - - { os: macos-latest, target: macos } + - { os: ubuntu-latest, target: linux } + - { os: macos-latest, target: darwin } - { os: windows-latest, target: windows } runs-on: ${{ matrix.job.os }} steps: |