maint: adding proper smoke test(s) #562
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request | |
on: | |
pull_request: | |
jobs: | |
docker-build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Repo | |
uses: actions/[email protected] | |
- name: Run tests | |
run: make docker-test | |
- name: Set up QEMU | |
uses: docker/[email protected] | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
- name: Build docker image | |
uses: docker/[email protected] | |
with: | |
context: . | |
push: false | |
platforms: linux/amd64 | |
# platforms: linux/amd64,linux/arm64 - don't build arm64 on PRs for now | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |