Skip to content

Commit 1b168c3

Browse files
authored
Merge pull request #31 from necaris/fix-ci
Update CI & general config
2 parents 61bb5a5 + df00b97 commit 1b168c3

File tree

5 files changed

+27
-127
lines changed

5 files changed

+27
-127
lines changed

.circleci/config.yml

Lines changed: 0 additions & 94 deletions
This file was deleted.

.github/CODEOWNERS

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/PULL_REQUEST_TEMPLATE

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,3 @@
33
Please describe the feature(s) added, bug(s) fixed, etc here at a high level,
44
and go into detail in further paragraphs if necessary.
55

6-
7-
## Upside CLA
8-
- [ ] I agree to the [contributer license agreement](CONTRIBUTOR_LICENSE_AGREEMENT.md)

.github/workflows/tests.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Run Tests
2+
on: push
3+
4+
jobs:
5+
pytest:
6+
name: pytest
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@master
10+
- name: Install
11+
uses: abatilo/actions-poetry@v1.5.0
12+
with:
13+
python_version: 3.8.3
14+
poetry_version: 1.0
15+
args: install
16+
- name: Lint
17+
uses: abatilo/actions-poetry@v1.5.0
18+
with:
19+
python_version: 3.8.3
20+
poetry_version: 1.0
21+
args: run pre-commit run --all-files
22+
- name: Run pytest
23+
uses: abatilo/actions-poetry@v1.5.0
24+
with:
25+
python_version: 3.8.3
26+
poetry_version: 1.0
27+
args: run pytest

CONTRIBUTOR_LICENSE_AGREEMENT.md

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)