ci: add action for releasing new docker image and testing it #195
Workflow file for this run
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
name: build (repository package) | |
on: | |
push: | |
paths-ignore: | |
# specific folder locations | |
- ".vscode/**" | |
- "docs/**" | |
# filetypes | |
- "**.md" | |
- "**.rst" | |
- "**.ipynb" | |
- "**.cff" | |
- "**.png" | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
paths-ignore: | |
# specific folder locations | |
- ".vscode/**" | |
- "docs/**" | |
# filetypes | |
- "**.md" | |
- "**.rst" | |
- "**.ipynb" | |
- "**.cff" | |
- "**.png" | |
jobs: | |
build: | |
if: github.event.pull_request.draft == false | |
name: Build for (${{ matrix.python-version }}, ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["ubuntu-latest"] | |
python-version: ["3.10"] # ["3.10", "3.11"] | |
# https://github.com/marketplace/actions/setup-miniconda#use-a-default-shell | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/install-python-and-package | |
with: | |
python-version: ${{ matrix.python-version }} | |
extras-require: test, publishing | |
pkg-installation-type: "repository" | |
- name: Run unit tests | |
run: pytest -v | |
- name: Verify that we can build the package | |
run: python3 -m build |