Skip to content

Bump github.com/docker/docker from 24.0.0-rc.2.0.20230905130451-032797ea4bcb+incompatible to 24.0.7+incompatible in /src/dockerfile-add-scanner #21

Bump github.com/docker/docker from 24.0.0-rc.2.0.20230905130451-032797ea4bcb+incompatible to 24.0.7+incompatible in /src/dockerfile-add-scanner

Bump github.com/docker/docker from 24.0.0-rc.2.0.20230905130451-032797ea4bcb+incompatible to 24.0.7+incompatible in /src/dockerfile-add-scanner #21

Workflow file for this run

---
name: Unit tests
on: # yamllint disable-line rule:truthy
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Test
run: |
make test
- name: Report test results as Annotations
if: ${{ always() }}
uses: guyarb/[email protected]
with:
test-results: dist/amd64/results.json
- name: Store raw test results
if: ${{ always() }}
uses: actions/upload-artifact@v3
with:
name: 'test-report'
path: ${{ github.workspace }}/dist
- name: Get code coverage
uses: codecov/codecov-action@v3