summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/release.yml79
-rw-r--r--.github/workflows/tests.yml76
2 files changed, 155 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
new file mode 100644
index 0000000..59062ae
--- /dev/null
+++ b/.github/workflows/release.yml
@@ -0,0 +1,79 @@
+name: Release
+
+on:
+ push:
+ tags:
+ - '*.*.*'
+
+jobs:
+
+ build:
+ name: Build wheels on ${{ matrix.os }}
+ runs-on: ${{ matrix.os }}-latest
+ strategy:
+ matrix:
+ os: [ ubuntu, windows, macos ]
+
+ steps:
+ - uses: actions/checkout@v3
+
+ - name: Build wheels
+ uses: pypa/cibuildwheel@v2.10.1
+ env:
+ CIBW_PROJECT_REQUIRES_PYTHON: ">=3.7"
+ with:
+ package-dir: .
+ output-dir: dist
+
+ - uses: actions/upload-artifact@v3
+ with:
+ name: dist
+ path: ./dist/*
+
+ Release:
+ needs: [ build ]
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@v2
+
+ - name: Download artifacts
+ uses: actions/download-artifact@v3
+ with:
+ name: dist
+ path: dist
+
+ - name: Install Poetry
+ run: |
+ curl -fsS https://install.python-poetry.org | python - -y
+
+ - name: Update PATH
+ run: echo "$HOME/.local/bin" >> $GITHUB_PATH
+
+ - name: Build sdist
+ run: poetry build --format sdist
+
+ - name: Check distributions
+ run: |
+ ls -la dist
+
+ - name: Check Version
+ id: check-version
+ run: |
+ [[ "${GITHUB_REF#refs/tags/}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] \
+ || echo ::set-output name=prerelease::true
+
+ - name: Create Release
+ uses: ncipollo/release-action@v1
+ with:
+ artifacts: "dist/*"
+ token: ${{ secrets.GITHUB_TOKEN }}
+ draft: false
+ prerelease: steps.check-version.outputs.prerelease == 'true'
+
+ - name: Publish to PyPI
+ env:
+ POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
+ run: |
+ poetry publish
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
new file mode 100644
index 0000000..341859e
--- /dev/null
+++ b/.github/workflows/tests.yml
@@ -0,0 +1,76 @@
+name: Tests
+
+on:
+ push:
+ paths-ignore:
+ - 'docs/**'
+ branches:
+ - master
+ pull_request:
+ paths-ignore:
+ - 'docs/**'
+ branches:
+ - '**'
+
+jobs:
+ Tests:
+ name: ${{ matrix.os }} / ${{ matrix.python-version }}
+ runs-on: ${{ matrix.os }}-latest
+ strategy:
+ matrix:
+ os: [Ubuntu, MacOS, Windows]
+ python-version: [3.7, 3.8, 3.9, "3.10"]
+ defaults:
+ run:
+ shell: bash
+
+ steps:
+ - uses: actions/checkout@v3
+
+ - name: Set up Python ${{ matrix.python-version }}
+ uses: actions/setup-python@v4
+ with:
+ python-version: ${{ matrix.python-version }}
+
+ - name: Get full Python version
+ id: full-python-version
+ run: |
+ echo ::set-output name=version::$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))")
+
+ - name: Install poetry
+ run: |
+ curl -fsS https://install.python-poetry.org | python - --preview -y
+
+ - name: Update PATH
+ if: ${{ matrix.os != 'Windows' }}
+ run: echo "$HOME/.local/bin" >> $GITHUB_PATH
+
+ - name: Update Path for Windows
+ if: ${{ matrix.os == 'Windows' }}
+ run: echo "$APPDATA\Python\Scripts" >> $GITHUB_PATH
+
+ - name: Configure poetry
+ run: poetry config virtualenvs.in-project true
+
+ - name: Set up cache
+ uses: actions/cache@v3
+ id: cache
+ with:
+ path: .venv
+ key: venv-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('**/poetry.lock') }}
+
+ - name: Ensure cache is healthy
+ # MacOS does not come with `timeout` command out of the box
+ if: steps.cache.outputs.cache-hit == 'true' && matrix.os != 'MacOS'
+ run: timeout 10s poetry run pip --version || rm -rf .venv
+
+ - name: Install dependencies
+ run: poetry install --only main --only test -vvv
+
+ - name: Test Pure Python
+ run: |
+ PENDULUM_EXTENSIONS=0 poetry run pytest -q tests
+
+ - name: Test
+ run: |
+ poetry run pytest -q tests