Files
iperf3/.gitea/workflows/pr.yaml
T
Sagent bc76ed86c1
PR Checks / hadolint (pull_request) Failing after 9s
PR Checks / build-test (pull_request) Failing after 1s
fix: standardize workflow files to match repository conventions
2026-06-13 20:07:25 +00:00

23 lines
660 B
YAML

name: PR Checks
on:
pull_request:
branches: [master]
jobs:
hadolint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd311411884172c2cec0e10 # v6
- uses: hadolint/hadolint-action@2332a7b74a6de0dda2e2221d575162eba76ba5e5 # v3.3.0
with:
dockerfile: Dockerfile
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd311411884172c2cec0e10 # v6
- uses: docker/setup-buildx-action@d7f5e7f509e45cec5ce5c6c92c82e9d30b3df5 # v4
- run: docker build -t ci-image:${{ github.sha }} .
- run: bash tests/test.sh ci-image:${{ github.sha }}