We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0776f7 commit af195c2Copy full SHA for af195c2
.github/workflows/linux.yml
.github/workflows/macos.yml .github/workflows/test.yml.github/workflows/macos.yml renamed to .github/workflows/test.yml
@@ -1,10 +1,32 @@
1
-name: macOS
+name: Test
2
on:
3
- push
4
- pull_request
5
jobs:
6
+ linux:
7
+ name: Linux
8
+ strategy:
9
+ fail-fast: false
10
+ matrix:
11
+ os:
12
+ - centos-7
13
+ - almalinux-8
14
+ runs-on: ubuntu-latest
15
+ timeout-minutes: 5
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - name: Install XMLua
19
+ run: |
20
+ docker build \
21
+ -t clear-code/xmlua-${{ matrix.os }} \
22
+ -f dockerfiles/Dockerfile.${{ matrix.os }} \
23
+ .
24
+ - name: Test
25
26
+ docker run \
27
+ clear-code/xmlua-${{ matrix.os }}
28
macos:
- name: Test
29
+ name: macOS
30
strategy:
31
fail-fast: false
32
runs-on: macos-latest
0 commit comments