Skip to content

Commit

Permalink
Merge f81f164 into 2f46894
Browse files Browse the repository at this point in the history
  • Loading branch information
mosquito committed Sep 17, 2021
2 parents 2f46894 + f81f164 commit 5d08ac3
Show file tree
Hide file tree
Showing 13 changed files with 661 additions and 273 deletions.
6 changes: 6 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[run]
branch = True
omit =
*/env*/*
*/tests/*
*/.*/*
40 changes: 0 additions & 40 deletions .github/workflows/pythonpackage.yml

This file was deleted.

89 changes: 89 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: tests

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ${{ matrix.os }}

strategy:
matrix:
include:
- python: '3.9'
toxenv: mypy
os: ubuntu-latest

- python: '3.9'
toxenv: pylava
os: ubuntu-latest

- python: '3.9'
toxenv: checkdoc
os: ubuntu-latest

- python: '3.6'
toxenv: py36
os: ubuntu-latest
- python: '3.7'
toxenv: py37
os: ubuntu-latest
- python: '3.8'
toxenv: py38
os: ubuntu-latest
- python: '3.9'
toxenv: py39
os: ubuntu-latest

- python: '3.6'
toxenv: py36
os: macos-latest
- python: '3.7'
toxenv: py37
os: macos-latest
- python: '3.8'
toxenv: py38
os: macos-latest
- python: '3.9'
toxenv: py39
os: macos-latest

- python: '3.6'
toxenv: py36
os: windows-latest
- python: '3.7'
toxenv: py37
os: windows-latest
- python: '3.8'
toxenv: py38
os: windows-latest
- python: '3.9'
toxenv: py39
os: windows-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}

- name: Install tox
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
TOXENV: ${{ matrix.toxenv }}
run: pip install tox wheel

- name: Tests
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
FORCE_COLOR: yes
TOXENV: ${{ matrix.toxenv }}
run: tox
131 changes: 0 additions & 131 deletions README.md

This file was deleted.

0 comments on commit 5d08ac3

Please sign in to comment.