Skip to content

PLAT-2100 PLAT-2209: Re-enable tests after stories marked as done #895

PLAT-2100 PLAT-2209: Re-enable tests after stories marked as done

PLAT-2100 PLAT-2209: Re-enable tests after stories marked as done #895

Workflow file for this run

name: Lint and similar things for test
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main
jobs:
scriptcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: 🦪 ✔ 🧼🧼🧼
run: >-
docker run --rm -v "$PWD:/mnt" --workdir "/mnt" "koalaman/shellcheck:v0.8.0" --color=always \
$(find . -type f -exec grep -m1 -l -E '^#!.*sh.*' {} \; | grep -v '/.git/')
- name: 🧽 🐍
run: |-
pip install -r requirements.txt
pip install ruff
pip install black
ruff check
black --check .
pytest test_nano.py
working-directory: xtest