diff options
author | Caleb Maclennan <caleb@alerque.com> | 2022-07-27 09:55:54 +0300 |
---|---|---|
committer | Caleb Maclennan <caleb@alerque.com> | 2022-07-27 09:55:54 +0300 |
commit | 80503077dbb8428e4e99410d31ab42dd0438eef9 (patch) | |
tree | 99b35eee826cca0f13d08da51ef3538afdc12627 | |
parent | 5a7e3f08886ef2893148c1342fb6021291cf1307 (diff) | |
download | luasocket-80503077dbb8428e4e99410d31ab42dd0438eef9.tar.gz luasocket-80503077dbb8428e4e99410d31ab42dd0438eef9.tar.bz2 luasocket-80503077dbb8428e4e99410d31ab42dd0438eef9.zip |
ci: Echo correct platform in job title
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d6fe214..ee6e1d4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml | |||
@@ -8,11 +8,11 @@ on: | |||
8 | 8 | ||
9 | jobs: | 9 | jobs: |
10 | build: | 10 | build: |
11 | name: Test build on Linux | 11 | name: Test build on ${{ matrix.platform }} |
12 | strategy: | 12 | strategy: |
13 | fail-fast: false | 13 | fail-fast: false |
14 | matrix: | 14 | matrix: |
15 | luaVersion: [ "5.4", "5.3", "5.2", "5.1", "luajit", "luajit-openresty"] | 15 | luaVersion: [ "5.4", "5.3", "5.2", "5.1", "luajit", "luajit-openresty" ] |
16 | platform: [ "ubuntu-20.04", "macos-11" ] # "windows-2022" not supported by gh-actions-lua | 16 | platform: [ "ubuntu-20.04", "macos-11" ] # "windows-2022" not supported by gh-actions-lua |
17 | runs-on: ${{ matrix.platform }} | 17 | runs-on: ${{ matrix.platform }} |
18 | steps: | 18 | steps: |