playground dist update #46
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: main | |
on: push | |
env: | |
DOIT_NUM_PROCESS: 0 | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v2 | |
- name: install python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: "3.10" | |
- name: install python requirements | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e '.[dev]' | |
- name: doit check | |
run: doit check | |
- name: doit test | |
run: doit test |