Skip to content

Merge pull request #97 from OpenEnergyPlatform/release-v0.2.1 #85

Merge pull request #97 from OpenEnergyPlatform/release-v0.2.1

Merge pull request #97 from OpenEnergyPlatform/release-v0.2.1 #85

name: Automated Test
# We run this automated testing job on every commit on master and develop and for every pull request.
on:
push:
branches:
- master
- develop
pull_request:
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install tox and any other packages
run: pip install tox
- name: Run tox
# Run tox using the version of Python in `PATH`
run: tox -v