Bump peter-evans/create-pull-request from 6.0.2 to 6.0.5 #103
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: CI | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- "!*" | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dgoss | |
run: | | |
curl -sfL https://goss.rocks/install | sudo sh | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Run test | |
run: | | |
for platform in ${PLATFORMS}; do | |
echo "Testing ${platform}" | |
make build PLATFORM="${platform}" | |
docker images | |
make test PLATFORM="${platform}" | |
done | |
env: | |
PLATFORMS: linux/amd64 linux/arm64 | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: hadolint/[email protected] |