Skip to content

Update to CRS v4

Update to CRS v4 #139

Workflow file for this run

name: Test
on:
pull_request:
branches:
- master
jobs:
test:
name: Docker build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build image
run: docker build -t test .
- name: Run image
run: docker run -d --name apache test
- name: Verify
run: |
[ $(docker inspect apache --format='{{.State.Running}}') = 'true' ]