Skip to content

chore(deps): pin dependencies #28

chore(deps): pin dependencies

chore(deps): pin dependencies #28

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events
push:
branches:
- main
tags:
- v*
pull_request:
branches:
- main
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Specify the python versions to test
strategy:
matrix:
python-version: ["3.11"]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2
# Set up the python versions
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@e9aba2c848f5ebd159c070c61ea2c4e2b122355e # v2
with:
python-version: ${{ matrix.python-version }}
# Install poetry
- name: Install poetry and coveralls
run: >-
python -m pip install --upgrade poetry coveralls
# Setting up dependencies
- name: Install dependencies (with all extras)
run: |
poetry install --all-extras
# Runs all tests in the 'tests' directory and gets coverage
- name: Test the code
run: |
poetry run coverage run -m pytest -v
- name: mypy
run: poetry run mypy sfdmap2
# Push the coverage result to coveralls.io
- name: Run Coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
if: ${{ success() }}
run: coveralls
- name: Echo tag name
run: echo "Tag is ${{ github.ref }}, Tagged is ${{ startsWith(github.ref, 'refs/tags/')}}, Python Check is ${{matrix.python-version == 3.11}}, Deploy is ${{ startsWith(github.ref, 'refs/tags/') && matrix.python-version == 3.11}}"
# Build a tarball and push to Pypi if tagged with new version
- name: Build and publish
if: ${{ startsWith(github.ref, 'refs/tags/') && success() && matrix.python-version == 3.11}}
run: |
poetry publish -n --build
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }}