Skip to content

Fix AlphaPept annotation. #52

Fix AlphaPept annotation.

Fix AlphaPept annotation. #52

Workflow file for this run

name: Run tests, styling and linting
on:
pull_request:
jobs:
mergeCI:
runs-on: [self-hosted,Linux,X64,gpu]
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Startup
run: docker-compose --env-file .env.ci up -d serving develop --build
- name: Styling
run: docker-compose --env-file .env.ci exec develop black .
- name: Linting
run: docker-compose --env-file .env.ci exec develop koina_lint.sh --fail-under=6
- name: Testing
run: docker-compose --env-file .env.ci exec develop koina_test.sh
- name: Shutdown
if: always()
run: docker-compose --env-file .env.ci down
- name: Cleanup
if: always()
run: docker-compose --env-file .env.ci rm