Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/wolfi1k/Divera
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolfgang Koebele committed Feb 28, 2024
2 parents 16cd4c1 + 3cc2408 commit f69468a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Run tests

on:
push:
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Run Tests
run: python test_execution.py

0 comments on commit f69468a

Please sign in to comment.