Skip to content

Update update_documentation.yml #8

Update update_documentation.yml

Update update_documentation.yml #8

name: test_automation
on:
push:
branches:
- develop # or the branch you want to trigger the workflow on pull requests
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10.12] # Versions of Python to test against
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install # Ensure all dependencies are installed
- name: Run tests
if: always()
run: |
poetry run python -m unittest discover
- name: Lint python code with flake8
if: always()
run: |
poetry run flake8 .