Skip to content

Bump peter-evans/create-pull-request from 5.0.2 to 6.0.2 #99

Bump peter-evans/create-pull-request from 5.0.2 to 6.0.2

Bump peter-evans/create-pull-request from 5.0.2 to 6.0.2 #99

Workflow file for this run

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/hadolint-action@v3.1.0