aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-02-04 12:31:31 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-02-04 12:31:31 +0100
commitc1f4b790c458f0de368f32487a007d571858207c (patch)
tree45d7293ea14d0b4249e2e286327b4d8490ff563e /.github
parentdebian/README: update (diff)
parentt/i: call links-update twice, just in case (diff)
downloadconfig-links-c1f4b790c458f0de368f32487a007d571858207c.tar.gz
config-links-c1f4b790c458f0de368f32487a007d571858207c.zip
Merge tag 'v2.0.3' into debian
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml18
1 files changed, 16 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index f4954c4..2bfb964 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -6,7 +6,7 @@ on:
workflow_dispatch:
jobs:
- test:
+ test_local:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
@@ -26,4 +26,18 @@ jobs:
# with ancient utilities that come with the actual macOS.
- name: Test
- run: ./test/test.sh
+ run: make test
+
+ test_docker:
+ strategy:
+ matrix:
+ # Keep in sync with those in Makefile:
+ distro: [xenial, focal]
+ runs-on: ubuntu-latest
+ name: 'Test / Docker / ${{ matrix.distro }}'
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+
+ - name: Test
+ run: make 'test/docker/${{ matrix.distro }}'