Compare commits

...

3 Commits

Author SHA1 Message Date
Ryan c61ee56bd8 ignore qemu for now 2022-05-14 09:29:01 +00:00
Ryan 622b62f5fa fixup! wip 2022-05-14 09:27:40 +00:00
Ryan b35e58588c wip 2022-05-14 09:25:16 +00:00
1 changed files with 24 additions and 0 deletions

View File

@ -57,6 +57,30 @@ jobs:
files: coverage.txt
fail_ci_if_error: true # optional (default = false)
test-linux-podman:
name: test-linux-podman
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- run: |
podman system service --time=0 unix://$HOME/podman.sock &
echo "DOCKER_HOST=unix://$HOME/podman.sock" >> $GITHUB_ENV
# - name: Set up QEMU
# uses: docker/setup-qemu-action@v1
- uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/cache@v2
if: ${{ !env.ACT }}
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- run: go test -v -cover ./...
snapshot:
name: snapshot
runs-on: ubuntu-latest