Bump alpine from 3.18.2 to 3.18.5 in /.ci/docker-ci/alpine #787
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- 'docs/**' | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.head_ref || github.run_id }}-test | |
cancel-in-progress: true | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Shellcheck and Hadolint | |
run: make lint | |
docker-ci: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
docker-env: | |
- alma | |
- alpine | |
#- arch # disable arch testing for now, see #916 | |
- debian-gnupg1 # We need to test legacy version of gnupg | |
- debian-gnupg2 | |
- fedora | |
- rocky | |
- ubuntu | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run checks | |
run: SECRETS_DOCKER_ENV="${{ matrix.docker-env }}" make docker-ci | |
osx-ci: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
test-verbose: [0, 1] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install deps | |
run: brew install gawk gnupg | |
- name: Run checks | |
run: SECRETS_TEST_VERBOSE=${{ matrix.test-verbose }} make test | |
freebsd-ci: | |
runs-on: macos-10.15 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run checks | |
id: test | |
uses: vmactions/[email protected] | |
with: | |
usesh: true | |
prepare: pkg install -y gnupg bash gmake git gawk | |
run: | | |
which -a bash | |
which -a shell | |
gmake test | |
windows-wsl-ci: | |
runs-on: windows-latest | |
steps: | |
- uses: Vampire/setup-wsl@v2 | |
with: | |
update: 'true' | |
additional-packages: gnupg make man git gawk file | |
- run: git config --global core.autocrlf input | |
- uses: actions/checkout@v4 | |
- shell: wsl-bash {0} | |
run: make test |