Upgrade dependencies are reccomended by github's dependabot and poetry's show-outdated #452
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
# This workflow will install dependencies, build Pyctuator, run tests (+coverage) and lint | |
name: build | |
on: | |
push: | |
pull_request: | |
jobs: | |
run_image: | |
runs-on: [ubuntu-latest] | |
container: | |
image: python:3.10 | |
env: | |
TEST_REDIS_SERVER: True | |
REDIS_HOST: redis | |
services: | |
# Use a redis container for testing the redis health-provider | |
redis: | |
image: redis:5.0.3 | |
steps: | |
- uses: actions/checkout@v2 | |
- run: make bootstrap | |
- run: poetry build -vvv | |
# Install all dependencies except for psutil and run the tests with coverage - this tests handling missing psutil | |
- run: poetry install --extras flask --extras fastapi --extras aiohttp --extras tornado --extras db --extras redis | |
- run: make coverage | |
# Run pylint+mypy after installing psutil so they don't complain on missing dependencies | |
- run: poetry install --extras flask --extras fastapi --extras aiohttp --extras tornado --extras db --extras redis --extras psutil | |
- run: make check | |
# Run tests with coverage again - this adds tests that require psutil | |
- run: make coverage | |
# Upload coverage files to codecov | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: htmlcov.zip | |
path: htmlcov/ | |
- uses: codecov/codecov-action@v1 |