Skip to content
This repository has been archived by the owner on Apr 14, 2024. It is now read-only.

hotfix autotests ci/cd #1148

hotfix autotests ci/cd

hotfix autotests ci/cd #1148

Workflow file for this run

name: Integration
on: [pull_request]
jobs:
build:
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: docker build -t collabry:test-${{ github.sha }} --target full .
lint:
needs: [build]
runs-on: self-hosted
steps:
- name: Lint
run: >
docker run --rm collabry:test-${{ github.sha }} pylint collabry autotests tests
isort:
needs: [build]
runs-on: self-hosted
steps:
- name: Isort
run: docker run --rm collabry:test-${{ github.sha }} isort --check .
test:
needs: [build]
runs-on: self-hosted
steps:
- name: Test
run: docker run --rm collabry:test-${{ github.sha }} pytest tests