Skip to content

update base os digest to sha256:8edcfab3ba26 #24

update base os digest to sha256:8edcfab3ba26

update base os digest to sha256:8edcfab3ba26 #24

Workflow file for this run

name: CI
on:
push:
branches: ["*"]
paths:
- "Dockerfile"
pull_request:
branches: ["*"]
paths-ignore:
- "**.md"
- "LICENSE"
workflow_dispatch:
concurrency:
group: ${{ github.workflow}}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test:
strategy:
fail-fast: false
matrix:
include:
- continue-on-error: true
runner: ubuntu-20.04
volume-permission: ro
- continue-on-error: false
runner: ubuntu-22.04
volume-permission: rw
uses: trfore/docker-image/.github/workflows/test_systemd.yml@main
with:
continue-on-error: ${{ matrix.continue-on-error }}
runner: ${{ matrix.runner }}
volume-permission: ${{ matrix.volume-permission }}
check:
if: always() && failure()
needs:
- test
runs-on: ubuntu-latest
steps:
- run: >-
python -c "assert set([
'${{ needs.test.result }}',
]) == {'success'}"