Skip to content

Commit

Permalink
[squashme] wip
Browse files Browse the repository at this point in the history
  • Loading branch information
augustebaum committed Sep 17, 2024
1 parent a2d6de7 commit 600fd8d
Show file tree
Hide file tree
Showing 3 changed files with 83 additions and 51 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/lint-and-test-backend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Lint and test backend

on:
push:
paths:
- 'src/**'
- 'tests/**'
- pyproject.toml
- Makefile
- requirements*.txt
- .pre-commit-config.yaml

permissions:
contents: read

jobs:
lint-and-test-backend:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e . -r requirements.txt -r requirements-test.txt
- name: Build frontend and share library
shell: bash
run: make build-frontend

- name: Lint src/ with pre-commit
run: |
cd src/
pre-commit run --all-files
- name: Lint tests/ with pre-commit
run: |
cd tests/
pre-commit run --all-files
- name: Test with pytest
timeout-minutes: 5
run: |
python -m pytest
37 changes: 37 additions & 0 deletions .github/workflows/lint-and-test-frontend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Lint and test frontend

on:
push:
paths:
- 'frontend/**'
- .pre-commit-config.yaml

permissions:
contents: read
pull-requests: write

jobs:
lint-and-test-frontend:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Node 20
uses: actions/setup-node@v4
with:
node-version: 20
- name: Lint with pre-commit
run: |
pre-commit run --files frontend
- name: Test with vitest
run: |
cd frontend
npm run test:unit:coverage
- uses: jwalton/gh-find-current-pr@v1
id: findPr
- name: Report coverage
if: always()
uses: davelosert/vitest-coverage-report-action@v2
with:
working-directory: ./frontend
pr-number: ${{ steps.findPr.outputs.pr }}
51 changes: 0 additions & 51 deletions .github/workflows/lint-and-test.yml

This file was deleted.

0 comments on commit 600fd8d

Please sign in to comment.