Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit 8494af4

Browse files
author
Thiago C. D'Ávila
authored
Merge pull request #49 from staticdev/actions
Add actions
2 parents d483161 + 8ea1ad7 commit 8494af4

File tree

4 files changed

+158
-31
lines changed

4 files changed

+158
-31
lines changed

.github/workflows/constraints.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pip==20.1
1+
pip==20.1.1
22
nox==2019.11.9
33
poetry==1.0.5
4-
pre-commit==2.3.0
4+
virtualenv==20.0.21

.github/workflows/release.yml

+60-9
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,72 @@
11
name: Release
2+
23
on:
3-
release:
4-
types: [published]
4+
push:
5+
branches:
6+
- master
7+
58
jobs:
69
release:
10+
name: Release
711
runs-on: ubuntu-latest
812
steps:
9-
- uses: actions/[email protected]
10-
- uses: actions/[email protected]
13+
- name: Check out the repository
14+
uses: actions/[email protected]
15+
with:
16+
fetch-depth: 2
17+
18+
- name: Set up Python
19+
uses: actions/setup-python@v2
1120
with:
1221
python-version: "3.8"
13-
- run: |
22+
23+
- name: Upgrade pip
24+
run: |
1425
pip install --constraint=.github/workflows/constraints.txt pip
15-
pip install --constraint=.github/workflows/constraints.txt nox poetry
16-
# - run: nox --force-color
17-
- run: poetry build --ansi
18-
- uses: pypa/[email protected]
26+
pip --version
27+
28+
- name: Install Poetry
29+
run: |
30+
pip install --constraint=.github/workflows/constraints.txt poetry
31+
poetry --version
32+
33+
- name: Detect and tag new version
34+
id: check-version
35+
uses: salsify/[email protected]
36+
with:
37+
version-command: |
38+
poetry version | awk '{ print $2 }'
39+
40+
- name: Bump version for developmental release
41+
if: "! steps.check-version.outputs.tag"
42+
run: |
43+
poetry version patch &&
44+
version=$(poetry version | awk '{ print $2 }') &&
45+
poetry version $version.dev.$(date +%s)
46+
47+
- name: Build package
48+
run: |
49+
poetry build --ansi
50+
51+
- name: Publish package on PyPI
52+
if: steps.check-version.outputs.tag
53+
uses: pypa/[email protected]
1954
with:
2055
user: __token__
2156
password: ${{ secrets.PYPI_TOKEN }}
57+
58+
- name: Publish package on TestPyPI
59+
if: "! steps.check-version.outputs.tag"
60+
uses: pypa/[email protected]
61+
with:
62+
user: __token__
63+
password: ${{ secrets.TEST_PYPI_TOKEN }}
64+
repository_url: https://test.pypi.org/legacy/
65+
66+
- name: Publish the release notes
67+
uses: release-drafter/[email protected]
68+
with:
69+
publish: ${{ steps.check-version.outputs.tag != '' }}
70+
tag: ${{ steps.check-version.outputs.tag }}
71+
env:
72+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/tests.yml

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
name: Tests
2+
3+
on:
4+
- push
5+
- pull_request
6+
7+
jobs:
8+
tests:
9+
name: ${{ matrix.session }} ${{ matrix.python-version }} / ${{ matrix.os }}
10+
runs-on: ${{ matrix.os }}
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
include:
15+
- { python-version: 3.8, os: ubuntu-latest, session: "pre-commit" }
16+
- { python-version: 3.8, os: ubuntu-latest, session: "safety" }
17+
- { python-version: 3.8, os: ubuntu-latest, session: "mypy-3.8" }
18+
- { python-version: 3.7, os: ubuntu-latest, session: "mypy-3.7" }
19+
- { python-version: 3.6, os: ubuntu-latest, session: "mypy-3.6" }
20+
- { python-version: 3.8, os: ubuntu-latest, session: "tests-3.8" }
21+
- { python-version: 3.7, os: ubuntu-latest, session: "tests-3.7" }
22+
- { python-version: 3.6, os: ubuntu-latest, session: "tests-3.6" }
23+
# - { python-version: 3.8, os: windows-latest, session: "tests-3.8" }
24+
- { python-version: 3.8, os: macos-latest, session: "tests-3.8" }
25+
# - { python-version: 3.8, os: ubuntu-latest, session: "docs" }
26+
27+
env:
28+
NOXSESSION: ${{ matrix.session }}
29+
30+
steps:
31+
- name: Check out the repository
32+
uses: actions/[email protected]
33+
34+
- name: Set up Python ${{ matrix.python-version }}
35+
uses: actions/setup-python@v2
36+
with:
37+
python-version: ${{ matrix.python-version }}
38+
39+
- name: Upgrade pip
40+
run: |
41+
pip install --constraint=.github/workflows/constraints.txt pip
42+
pip --version
43+
44+
- name: Install Poetry
45+
run: |
46+
pip install --constraint=.github/workflows/constraints.txt poetry
47+
poetry --version
48+
49+
- name: Install Nox
50+
run: |
51+
pip install --constraint=.github/workflows/constraints.txt nox
52+
nox --version
53+
54+
- name: Compute pre-commit cache key
55+
if: matrix.session == 'pre-commit'
56+
id: pre-commit-cache
57+
shell: python
58+
run: |
59+
import hashlib
60+
import sys
61+
62+
python = "py{}.{}".format(*sys.version_info[:2])
63+
payload = sys.version.encode() + sys.executable.encode()
64+
digest = hashlib.sha256(payload).hexdigest()
65+
result = "${{ runner.os }}-{}-{}-pre-commit".format(python, digest[:8])
66+
67+
print("::set-output name=result::{}".format(result))
68+
69+
- name: Restore pre-commit cache
70+
uses: actions/[email protected]
71+
if: matrix.session == 'pre-commit'
72+
with:
73+
path: ~/.cache/pre-commit
74+
key: ${{ steps.pre-commit-cache.outputs.result }}-${{ hashFiles('.pre-commit-config.yaml') }}
75+
restore-keys: |
76+
${{ steps.pre-commit-cache.outputs.result }}-
77+
78+
- name: Run Nox
79+
run: |
80+
nox --force-color
81+
82+
# - name: Upload documentation
83+
# if: matrix.session == 'docs'
84+
# uses: actions/upload-artifact@v2
85+
# with:
86+
# name: docs
87+
# path: docs/_build
88+
89+
- name: Create coverage report
90+
if: always() && matrix.session == 'tests'
91+
run: |
92+
nox --force-color --session=coverage -- xml
93+
94+
- name: Upload coverage report
95+
if: always() && matrix.session == 'tests'
96+
uses: codecov/[email protected]

.travis.yml

-20
This file was deleted.

0 commit comments

Comments
 (0)