We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04cbab0 commit 0badd16Copy full SHA for 0badd16
.github/workflows/tests.yml
@@ -1,10 +1,25 @@
1
name: Tests
2
3
-on: [push]
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
jobs:
- build:
10
11
+ dist:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Install gettext
15
+ run: sudo apt-get install gettext -y
16
+ - uses: actions/setup-python@v2
17
+ - run: python -m pip install --upgrade pip setuptools wheel twine readme-renderer
18
+ - uses: actions/checkout@v2
19
+ - run: python setup.py sdist bdist_wheel
20
+ - run: python -m twine check dist/*
21
+
22
+ pytest:
23
runs-on: ubuntu-latest
24
strategy:
25
max-parallel: 4
@@ -16,7 +31,6 @@ jobs:
31
django-version:
32
- "2.2"
33
- "3.1"
-
34
steps:
35
- uses: actions/checkout@v1
36
- name: Set up Python ${{ matrix.python-version }}
0 commit comments