-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from kardia-as/github-actions
add ci action
- Loading branch information
Showing
6 changed files
with
249 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
name: CI | ||
|
||
# yamllint disable-line rule:truthy | ||
on: | ||
push: | ||
pull_request: ~ | ||
|
||
env: | ||
CACHE_VERSION: 1 | ||
DEFAULT_PYTHON: 3.8 | ||
PRE_COMMIT_HOME: ~/.cache/pre-commit | ||
|
||
jobs: | ||
# Separate job to pre-populate the base dependency cache | ||
# This prevent upcoming jobs to do the same individually | ||
prepare-base: | ||
name: Prepare base dependencies | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: [3.8, 3.9, "3.10", "3.11"] | ||
steps: | ||
- name: Check out code from GitHub | ||
uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
id: python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Restore base Python virtual environment | ||
id: cache-venv | ||
uses: actions/cache@v2 | ||
with: | ||
path: venv | ||
key: >- | ||
${{ env.CACHE_VERSION}}-${{ runner.os }}-base-venv-${{ | ||
steps.python.outputs.python-version }}-${{ | ||
hashFiles('pyproject.toml') }} | ||
restore-keys: | | ||
${{ env.CACHE_VERSION}}-${{ runner.os }}-base-venv-${{ steps.python.outputs.python-version }}- | ||
- name: Create Python virtual environment | ||
if: steps.cache-venv.outputs.cache-hit != 'true' | ||
run: | | ||
python -m venv venv | ||
. venv/bin/activate | ||
pip install -U pip setuptools pre-commit | ||
pip install -e . | ||
pre-commit: | ||
name: Prepare pre-commit environment | ||
runs-on: ubuntu-latest | ||
needs: prepare-base | ||
steps: | ||
- name: Check out code from GitHub | ||
uses: actions/checkout@v2 | ||
- name: Set up Python ${{ env.DEFAULT_PYTHON }} | ||
uses: actions/setup-python@v2 | ||
id: python | ||
with: | ||
python-version: ${{ env.DEFAULT_PYTHON }} | ||
- name: Restore base Python virtual environment | ||
id: cache-venv | ||
uses: actions/cache@v2 | ||
with: | ||
path: venv | ||
key: >- | ||
${{ env.CACHE_VERSION}}-${{ runner.os }}-base-venv-${{ | ||
steps.python.outputs.python-version }}-${{ | ||
hashFiles('pyproject.toml') }} | ||
- name: Fail job if Python cache restore failed | ||
if: steps.cache-venv.outputs.cache-hit != 'true' | ||
run: | | ||
echo "Failed to restore Python virtual environment from cache" | ||
exit 1 | ||
- name: Restore pre-commit environment from cache | ||
id: cache-precommit | ||
uses: actions/cache@v2 | ||
with: | ||
path: ${{ env.PRE_COMMIT_HOME }} | ||
key: | | ||
${{ env.CACHE_VERSION}}-${{ runner.os }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }} | ||
restore-keys: | | ||
${{ env.CACHE_VERSION}}-${{ runner.os }}-pre-commit- | ||
- name: Install pre-commit dependencies | ||
if: steps.cache-precommit.outputs.cache-hit != 'true' | ||
run: | | ||
. venv/bin/activate | ||
pre-commit install-hooks | ||
lint-flake8: | ||
name: Check flake8 | ||
runs-on: ubuntu-latest | ||
needs: pre-commit | ||
steps: | ||
- name: Check out code from GitHub | ||
uses: actions/checkout@v2 | ||
- name: Set up Python ${{ env.DEFAULT_PYTHON }} | ||
uses: actions/setup-python@v2 | ||
id: python | ||
with: | ||
python-version: ${{ env.DEFAULT_PYTHON }} | ||
- name: Restore base Python virtual environment | ||
id: cache-venv | ||
uses: actions/cache@v2 | ||
with: | ||
path: venv | ||
key: >- | ||
${{ env.CACHE_VERSION}}-${{ runner.os }}-base-venv-${{ | ||
steps.python.outputs.python-version }}-${{ | ||
hashFiles('pyproject.toml') }} | ||
- name: Fail job if Python cache restore failed | ||
if: steps.cache-venv.outputs.cache-hit != 'true' | ||
run: | | ||
echo "Failed to restore Python virtual environment from cache" | ||
exit 1 | ||
- name: Restore pre-commit environment from cache | ||
id: cache-precommit | ||
uses: actions/cache@v2 | ||
with: | ||
path: ${{ env.PRE_COMMIT_HOME }} | ||
key: | | ||
${{ env.CACHE_VERSION}}-${{ runner.os }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }} | ||
- name: Fail job if cache restore failed | ||
if: steps.cache-venv.outputs.cache-hit != 'true' | ||
run: | | ||
echo "Failed to restore Python virtual environment from cache" | ||
exit 1 | ||
- name: Register flake8 problem matcher | ||
run: | | ||
echo "::add-matcher::.github/workflows/matchers/flake8.json" | ||
- name: Run flake8 | ||
run: | | ||
. venv/bin/activate | ||
pre-commit run --hook-stage manual flake8 --all-files |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"problemMatcher": [ | ||
{ | ||
"owner": "flake8-error", | ||
"severity": "error", | ||
"pattern": [ | ||
{ | ||
"regexp": "^(.*):(\\d+):(\\d+):\\s([EF]\\d{3}\\s.*)$", | ||
"file": 1, | ||
"line": 2, | ||
"column": 3, | ||
"message": 4 | ||
} | ||
] | ||
}, | ||
{ | ||
"owner": "flake8-warning", | ||
"severity": "warning", | ||
"pattern": [ | ||
{ | ||
"regexp": "^(.*):(\\d+):(\\d+):\\s([CDNW]\\d{3}\\s.*)$", | ||
"file": 1, | ||
"line": 2, | ||
"column": 3, | ||
"message": 4 | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"problemMatcher": [ | ||
{ | ||
"owner": "python", | ||
"pattern": [ | ||
{ | ||
"regexp": "^\\s*File\\s\\\"(.*)\\\",\\sline\\s(\\d+),\\sin\\s(.*)$", | ||
"file": 1, | ||
"line": 2 | ||
}, | ||
{ | ||
"regexp": "^\\s*raise\\s(.*)\\(\\'(.*)\\'\\)$", | ||
"message": 2 | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Publish distributions to PyPI | ||
on: | ||
release: | ||
types: | ||
- released | ||
|
||
jobs: | ||
build-and-publish: | ||
name: Build and publish distributions to PyPI | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.8 | ||
- name: Install wheel | ||
run: >- | ||
pip install wheel build | ||
- name: Build wheel | ||
run: >- | ||
python3 -m build | ||
- name: Publish distribution to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
password: ${{ secrets.PYPI_API_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Publish distributions to TestPyPI | ||
on: | ||
push: | ||
tags: | ||
- "*" | ||
|
||
jobs: | ||
build-and-publish: | ||
name: Build and publish distributions to TestPyPI | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.8 | ||
- name: Install wheel | ||
run: >- | ||
pip install wheel build | ||
- name: Build wheel | ||
run: >- | ||
python3 -m build | ||
- name: Publish distribution to Test PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
password: ${{ secrets.TEST_PYPI_API_TOKEN }} | ||
repository-url: https://test.pypi.org/legacy/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
repos: | ||
- repo: https://github.com/pycqa/flake8 | ||
rev: 6.0.0 | ||
hooks: | ||
- id: flake8 | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.4.0 | ||
hooks: | ||
- id: debug-statements | ||
- id: no-commit-to-branch | ||
args: | ||
- --branch=dev | ||
- --branch=main | ||
- --branch=rc |