Skip to content

Commit

Permalink
New workflow to test the code.
Browse files Browse the repository at this point in the history
  • Loading branch information
haarlemmer authored Apr 6, 2024
1 parent 2aaa546 commit 52510e0
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/testscript.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Auto Test

on:
push:
branches:
- main
- release/*

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run test script
run: |
python -m testscripts.testmain

0 comments on commit 52510e0

Please sign in to comment.