Skip to content

Commit

Permalink
add back github workfl
Browse files Browse the repository at this point in the history
  • Loading branch information
schaefi committed Oct 22, 2024
1 parent 535affe commit e316f92
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci-testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CILint

on: [push]

jobs:
unit_tests:
name: Unit tests for DMS
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.11"]
os: [ubuntu-latest]
include:
# Use ubuntu 20.04 for python 3.6 (dropped from later versions)
- python-version: 3.6
os: ubuntu-20.04

steps:
- uses: actions/checkout@v3
- name: Python${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Tox
run: |
tox

0 comments on commit e316f92

Please sign in to comment.