Skip to content

Make systemd user services easier to deploy #101

Make systemd user services easier to deploy

Make systemd user services easier to deploy #101

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: "0 3 1 * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v2
- name: Set up python
run: uv python install
- name: Install the project
run: uv sync --all-extras --dev
- name: Run ruff check
run: ./ci-check.sh
- name: Run tests
run: ./ci-tests.sh
- name: Run coverage JSON report
run: ./ci-coverage.sh
- name: Upload to codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}