Skip to content

Commit

Permalink
Add github action build-and-test
Browse files Browse the repository at this point in the history
  • Loading branch information
ndevenish committed Sep 5, 2023
1 parent 9094b95 commit 67f5246
Show file tree
Hide file tree
Showing 2 changed files with 98 additions and 0 deletions.
95 changes: 95 additions & 0 deletions .github/workflows/build_and_test.yml
@@ -0,0 +1,95 @@
# name: "Linting"

# on:
# push:

# jobs:
# lint:
# name: Lint
# runs-on: ubuntu-latest

# steps:
# - name: Checkout
# uses: actions/checkout@v3

# - name: Ruff Check
# uses: jpetrucciani/ruff-check@33f3725e751a187bb666b7d7a7094d38a2df12db # 0.0.239

name: Build and Test

on:
push:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest build
- name: Build distribution
run: |
python -m build
pip install dist/*.whl
- uses: actions/upload-artifact@v2
with:
path: ./dist/*

test:
needs: build
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v2
with:
name: artifact
path: dist

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest dist/*.whl -r requirements_dev.txt pytest-md pytest-emoji
- name: Run pytest
uses: pavelzw/pytest-action@b09a85cd1831cbaae76125fcae4a1e4b137ef026 # v2.1.3
with:
verbose: true
emoji: true
job-summary: true
custom-arguments: "-v -ra --cov=zocalo --cov-report=xml --cov-branch"
custom-pytest: "PYTHONDEVMODE=1 pytest"
click-to-expand: true
report-title: "Test Report"
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4

pypi-publish:
name: Upload release to PyPI
needs: test
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
runs-on: ubuntu-latest
environment:
name: release
url: https://pypi.org/watchdir
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v2
with:
name: artifact
path: dist
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@b7f401de30cb6434a1e19f805ff006643653240e
3 changes: 3 additions & 0 deletions pyproject.toml
Expand Up @@ -88,6 +88,9 @@ profile = "black"

[tool.pytest.ini_options]
required_plugins = "pytest-mock requests-mock"
testpaths = [
"tests",
]

[tool.ruff]
line-length = 88
Expand Down

0 comments on commit 67f5246

Please sign in to comment.