Skip to content

Bump the actions group across 1 directory with 4 updates #887

Bump the actions group across 1 directory with 4 updates

Bump the actions group across 1 directory with 4 updates #887

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
with:
egress-policy: audit
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Build containers
run: docker compose build --build-arg MIX_ENV=test
- name: Start containers
run: docker compose up -d db cache
- name: Run tests
run: docker compose run web bash -c 'cd server && mix test'