Skip to content

Bump black from 22.12.0 to 24.1.1 in /backend/app (#15) #118

Bump black from 22.12.0 to 24.1.1 in /backend/app (#15)

Bump black from 22.12.0 to 24.1.1 in /backend/app (#15) #118

Workflow file for this run

name: Testing bemore
on: [push, pull_request, workflow_dispatch]
# ensure that the workflow is only triggered once per PR, subsequent pushes to the PR will cancel
# and restart the workflow. See https://docs.github.com/en/actions/using-jobs/using-concurrency
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: sudo snap install --edge --classic just
- name: Checkout
if: github.event_name != 'pull_request'
uses: actions/checkout@v4
- name: Checkout
if: github.event_name == 'pull_request'
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Cache Docker images.
uses: ScribeMD/[email protected]
with:
key: docker-${{ hashFiles('docker-compose.ci.yml') }}
- run: just test
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: unittests
root_dir: ./backend/app/
fail_ci_if_error: false
verbose: true