Skip to content

Update README for requirements installation #66

Update README for requirements installation

Update README for requirements installation #66

Workflow file for this run

name: 🧪
on:
push:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Fetch the src
uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install requirements
run: python -m pip install -r requirements/base.txt -r requirements/dev.txt
- name: Run tests
run: python -m manage test
linters:
runs-on: ubuntu-latest
steps:
- name: Fetch the src
uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install requirements
run: python -m pip install -r requirements/base.txt -r requirements/dev.txt
- name: Install pre-commit
run: python -m pip install --upgrade pre-commit
- name: Run pre-commit
run: python -m pre_commit run --all-files
env:
SKIP: no-commit-to-branch