Skip to content

Fix building the backend #17

Fix building the backend

Fix building the backend #17

Workflow file for this run

name: publish-image
on:
push:
branches:
- master
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Log in to the container registry
run: make cr-login
env:
CR_PAT: ${{ secrets.CR_PAT }}
- name: Test the backend
run: make -C backend lint test
- name: Test the frontend
run: make -C frontend install lint test
- name: Build the image
run: make build-image
- name: Publish the image
run: make publish-image