aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaleb Maclennan <caleb@alerque.com>2022-07-27 09:55:54 +0300
committerCaleb Maclennan <caleb@alerque.com>2022-07-27 09:55:54 +0300
commit80503077dbb8428e4e99410d31ab42dd0438eef9 (patch)
tree99b35eee826cca0f13d08da51ef3538afdc12627
parent5a7e3f08886ef2893148c1342fb6021291cf1307 (diff)
downloadluasocket-80503077dbb8428e4e99410d31ab42dd0438eef9.tar.gz
luasocket-80503077dbb8428e4e99410d31ab42dd0438eef9.tar.bz2
luasocket-80503077dbb8428e4e99410d31ab42dd0438eef9.zip
ci: Echo correct platform in job title
-rw-r--r--.github/workflows/build.yml4
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
9jobs: 9jobs:
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: