Avoid installing venv on github actions server #52
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 Python dependencies, run tests and lint with a single version of Python | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Free up space | |
run: make free_up_space | |
- name: Install dependencies | |
run: pip3 install black pytest | |
- name: Lint with black | |
run: black --line-length 125 . --check | |
- name: Start service | |
run: make start_detached | |
- name: Check API ready | |
uses: emilioschepis/[email protected] | |
with: | |
url: http://localhost:5051 | |
method: GET | |
expected-status: 200 | |
timeout: 120000 | |
interval: 500 | |
- name: Test with unittest | |
run: cd src; python3 -m pytest |