Skip to content

[das#52] Run periodic checks in the 3 main repos and report problems in a specific Mattermost channel #95

[das#52] Run periodic checks in the 3 main repos and report problems in a specific Mattermost channel

[das#52] Run periodic checks in the 3 main repos and report problems in a specific Mattermost channel #95

Workflow file for this run

---
name: Run Tests & Lint
on:
pull_request:
branches:
- develop
- master
workflow_dispatch:
inputs:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set dotenv
run: cp .env.example .env
- name: Install dependencies
run: |-
pip3 install -r requirements.txt
pip3 install -r das-query-engine/requirements.txt
- name: Run Lint & Tests
run: make pre-commit