Skip to content

Update valhalla-gitlab-maven-logchange.yml #111

Update valhalla-gitlab-maven-logchange.yml

Update valhalla-gitlab-maven-logchange.yml #111

Workflow file for this run

name: Python Testing
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: python -m unittest discover -s test -t test -p '*_test.py'