refactor: migrate CI from single docker-build.yaml to split workflows #7

Merged
jcabillot merged 5 commits from fix/refactor-ci-pipelines into master 2026-06-12 20:18:46 -04:00
Showing only changes of commit 0237f9613d - Show all commits
+24
View File
@@ -0,0 +1,24 @@
name: PR Checks
on:
pull_request:
branches: [master]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
- name: Hadolint
uses: hadolint/hadolint-action@2332a7b74a6de0dda2e2221d575162eba76ba5e5
with:
dockerfile: pkg/Dockerfile
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
- name: Build image
run: docker build -f pkg/Dockerfile -t ci-image:${{ github.sha }} .
- name: Run tests
run: bash tests/test.sh ci-image:${{ github.sha }}