Skip to content

Bump the actions group with 4 updates (#683) #724

Bump the actions group with 4 updates (#683)

Bump the actions group with 4 updates (#683) #724

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@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
with:
egress-policy: audit
- name: Checkout code
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- 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'