diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml new file mode 100644 index 0000000000..fb658482e7 --- /dev/null +++ b/.github/workflows/master.yml @@ -0,0 +1,39 @@ +name: test + +on: + workflow_dispatch: + push: + pull_request: + +jobs: + amd64: + runs-on: ubuntu-latest + steps: + - + name: Set up Docker + uses: vvoland/ghaction-setup-docker@master + with: + version: master + daemon-config: | + { + "debug": true, + "features": { + "containerd-snapshotter": true + } + } + arm64: + runs-on: ubuntu22_arm64 + steps: + - + name: Set up Docker + uses: vvoland/ghaction-setup-docker@master + with: + version: master + daemon-config: | + { + "debug": true, + "features": { + "containerd-snapshotter": true + } + } +