Skip to content
This repository was archived by the owner on Aug 19, 2022. It is now read-only.

Tests upgrade #73

Merged
merged 2 commits into from
Jun 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: daily
time: '09:00'
open-pull-requests-limit: 10
- package-ecosystem: pip
directory: "/.github/workflows"
schedule:
interval: daily
time: '09:00'
open-pull-requests-limit: 10
- package-ecosystem: pip
directory: "/"
schedule:
interval: daily
time: '09:00'
open-pull-requests-limit: 10
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: daily
time: "09:00"
open-pull-requests-limit: 10
- package-ecosystem: pip
directory: "/.github/workflows"
schedule:
interval: daily
time: "09:00"
open-pull-requests-limit: 10
- package-ecosystem: pip
directory: "/"
schedule:
interval: daily
time: "09:00"
open-pull-requests-limit: 10
16 changes: 8 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@ jobs:
include:
- { python-version: 3.8, os: ubuntu-latest, session: "pre-commit" }
- { python-version: 3.8, os: ubuntu-latest, session: "safety" }
- { python-version: 3.8, os: ubuntu-latest, session: "mypy-3.8" }
- { python-version: 3.7, os: ubuntu-latest, session: "mypy-3.7" }
- { python-version: 3.8, os: ubuntu-latest, session: "tests-3.8" }
- { python-version: 3.7, os: ubuntu-latest, session: "tests-3.7" }
# - { python-version: 3.8, os: windows-latest, session: "tests-3.8" }
- { python-version: 3.8, os: macos-latest, session: "tests-3.8" }
- { python-version: 3.8, os: ubuntu-latest, session: "mypy" }
- { python-version: 3.7, os: ubuntu-latest, session: "mypy" }
- { python-version: 3.8, os: ubuntu-latest, session: "tests" }
- { python-version: 3.7, os: ubuntu-latest, session: "tests" }
# - { python-version: 3.8, os: windows-latest, session: "tests" }
- { python-version: 3.8, os: macos-latest, session: "tests" }
# - { python-version: 3.8, os: ubuntu-latest, session: "docs" }

env:
NOXSESSION: ${{ matrix.session }}

steps:
- name: Check out the repository
uses: actions/checkout@v2.2.0
uses: actions/checkout@v2.1.1

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
print("::set-output name=result::{}".format(result))

- name: Restore pre-commit cache
uses: actions/cache@v2
uses: actions/cache@v1.2.0
if: matrix.session == 'pre-commit'
with:
path: ~/.cache/pre-commit
Expand Down