Update tests

This commit is contained in:
hwdsl2 2023-02-11 23:12:15 -06:00
parent 3f12b9583b
commit 52677eeefb
2 changed files with 3 additions and 8 deletions

View File

@ -16,7 +16,6 @@ on:
- '**.sh'
- '.github/workflows/main.yml'
- '.github/workflows/shellcheck.yml'
- '.github/workflows/check_urls.yml'
- '.github/workflows/test_set_1.yml'
- '.github/workflows/test_set_2.yml'
@ -25,14 +24,10 @@ jobs:
if: github.repository_owner == 'hwdsl2'
uses: ./.github/workflows/shellcheck.yml
check_urls:
needs: shellcheck
uses: ./.github/workflows/check_urls.yml
test_set_1:
needs: [shellcheck, check_urls]
needs: shellcheck
uses: ./.github/workflows/test_set_1.yml
test_set_2:
needs: [shellcheck, check_urls]
needs: shellcheck
uses: ./.github/workflows/test_set_2.yml

View File

@ -17,7 +17,7 @@ jobs:
if: github.repository_owner == 'hwdsl2'
strategy:
matrix:
os_version: ["ubuntu:22.04", "ubuntu:20.04", "ubuntu:18.04", "debian:11", "debian:10", "alpine:3.15", "alpine:3.16"]
os_version: ["ubuntu:22.04", "ubuntu:20.04", "ubuntu:18.04", "debian:11", "debian:10", "alpine:3.17", "alpine:3.16"]
fail-fast: false
container:
image: ${{ matrix.os_version }}