Skip to content

Commit

Permalink
Merge pull request #24 from oislen/dev
Browse files Browse the repository at this point in the history
23-unittest-dev-branch
  • Loading branch information
oislen authored Oct 9, 2024
2 parents 6a4cf68 + 92b80aa commit 9349e56
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/unittest-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Unittest Dev

on:
pull_request:
branches: [ "dev" ]
push:
branches: [ "dev" ]

jobs:
build:

runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with unittest
run: |
python -m unittest discover ./scripts/unittests/utilities
python -m unittest discover ./scripts/unittests/objects

0 comments on commit 9349e56

Please sign in to comment.