Docs/.gitea/workflows/tests.yml
Profitroll f5490bd96a
All checks were successful
Tests / test (3.10) (push) Successful in 41s
Tests / test (3.11) (push) Successful in 39s
Tests / test (3.9) (push) Successful in 38s
Replaced ubuntu-latest with ubuntu-24.04 and added pip cache
2025-01-10 11:28:18 +02:00

33 lines
688 B
YAML

name: Tests
on:
push:
branches:
- dev
- main
tags-ignore:
- v*
pull_request:
jobs:
test:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
env:
AGENT_TOOLSDIRECTORY: /opt/hostedtoolcache
- name: Install dependencies
run: |
python -m pip install -r requirements.txt
- name: Test the build
run: TZ=UTC mkdocs build