Skip to content

Update ep 4 READMEs to use CMake instead of FPM #118

Update ep 4 READMEs to use CMake instead of FPM

Update ep 4 READMEs to use CMake instead of FPM #118

Workflow file for this run

---
name: Testing
on:
push:
branches:
- main
pull_request:
types:
- opened
- ready_for_review
- reopened
- synchronize
concurrency:
cancel-in-progress: true
group: >-
${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
jobs:
testing:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
attestations: read
# This is used to complete the identity challenge
# with sigstore/fulcio when running outside of PRs.
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Test episode 1
run: docker build . -f docker/Dockerfile.ep-1
- name: Test episode 2
run: docker build . -f docker/Dockerfile.ep-2
- name: Test episode 3
run: docker build . -f docker/Dockerfile.ep-3
- name: Test episode 4
run: docker build . -f docker/Dockerfile.ep-4
- name: Test episode 5
run: docker build . -f docker/Dockerfile.ep-5