diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-02 18:23:17 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-02 18:25:34 +0100 |
commit | 7cca99fd7ad119c27665488e28ceb86800afd574 (patch) | |
tree | 64f573301933e0a4ad279c2710adb51d82a22534 /.github/workflows | |
parent | accomodate older bash-es (diff) | |
download | config-links-7cca99fd7ad119c27665488e28ceb86800afd574.tar.gz config-links-7cca99fd7ad119c27665488e28ceb86800afd574.zip |
add Docker tests for older bash-es
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 18 |
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 }}' |