dev: update "Running in development" section in README #16
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: "Build and test" | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: "Test on Python ${{ matrix.python-version }}" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.8'] | |
steps: | |
- uses: actions/checkout@v2 | |
- 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 -r requirements.txt -r requirements-dev.txt | |
- name: Check types with mypy | |
run: MYPYPATH=.:djenius-base mypy --namespace-packages -p djenius | |
- name: Test djenius | |
run: PYTHONPATH=.:djenius-base pytest test/ | |
package: | |
name: "Build Python ${{ matrix.python-version }} package with Node ${{ matrix.node-version }}" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.8'] | |
node-version: ['14'] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Build optimized frontend bundle | |
run: cd frontend && yarn install && yarn run build | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Build djenius-base sdist | |
run: cd djenius-base && python setup.py sdist | |
- name: Build djenius sdist | |
run: python setup.py sdist | |
- name: Upload Python sdists | |
uses: actions/upload-artifact@v2 | |
with: | |
name: djenius-sdist | |
path: | | |
dist/*.tar.gz | |
djenius-base/dist/*.tar.gz |