Skip to content

chore: split tests workflow #2

chore: split tests workflow

chore: split tests workflow #2

Workflow file for this run

name: Static check
on:
push:
branches:
- "master"
- "stable"
pull_request:
branches:
- "master"
- "stable"
jobs:
static-check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip poetry importlib-resources==1.5.0
poetry export --with dev -f requirements.txt --output requirements.txt
pip install -r requirements.txt
- name: Run static checks
run: |
/bin/bash static_check.sh