Skip to content

Commit

Permalink
Merge pull request #170 from byuccl/next_release
Browse files Browse the repository at this point in the history
v.1.10.0
  • Loading branch information
jacobdbrown4 committed Dec 30, 2021
2 parents 2cfc33a + 686e7c7 commit c95f123
Show file tree
Hide file tree
Showing 53 changed files with 1,210 additions and 183 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Pylint

on: [push]

jobs:
build:
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}a
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install pylint-exit
- name: Analysing the code with pylint
run: |
pylint --rcfile=.pylintrc spydrnet/ || pylint-exit $?
13 changes: 8 additions & 5 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
on: push
name: on push
name: Pytest

on: [push]

jobs:
SpyDrNetPytest:
name: Functional unit tests
SpyDrNet_push:
name: SpyDrNet Push
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
Expand Down
Loading

0 comments on commit c95f123

Please sign in to comment.