CI: standardize workflows #9

Merged
jcabillot merged 4 commits from fix/workflow-standard into main 2026-06-13 22:14:42 -04:00
Showing only changes of commit c0508e7240 - Show all commits
+23
View File
@@ -0,0 +1,23 @@
name: Test
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4
- name: Build
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0
with:
context: .
file: pkg/Dockerfile
push: false
pull: true