Updated github actions and the ome-converter plugin #38
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: Package tests | |
env: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }} | |
on: | |
pull_request: | |
branches: | |
- main | |
- master | |
- dev | |
push: | |
branches-ignore: | |
- main | |
- master | |
- dev | |
workflow_call: | |
secrets: | |
DOCKER_USERNAME: | |
description: 'Docker Hub username' | |
required: true | |
DOCKER_TOKEN: | |
description: 'Docker Hub password' | |
required: true | |
permissions: | |
contents: read | |
jobs: | |
package-filter: | |
name: Filter for updated package | |
uses: ./.github/workflows/package-filter.yml | |
with: | |
num-commits: 0 | |
tests: | |
name: Test "${{ matrix.package_name }}" | |
needs: package-filter | |
strategy: | |
fail-fast: false | |
matrix: ${{fromJson(needs.package-filter.outputs.matrix)}} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
- name: Install Poetry | |
uses: abatilo/actions-poetry@v2 | |
- name: Install pre-commit | |
run: | | |
pip install pre-commit | |
- name: Run pre-commit hooks and check for changes | |
run: | | |
cd "${{ matrix.package_dir }}" | |
poetry run pre-commit run --files ./**/** | |
if [[ $(git status --porcelain) ]] | |
then | |
echo "::error::pre-commit hooks failed for ${{ matrix.package_name }}" && exit 1 | |
fi | |
- name: Run tests | |
run: | | |
package_dir=${{ matrix.package_dir }} | |
cd $package_dir | |
poetry install | |
poetry run pytest -v | |
docker: | |
name: Build Docker images | |
needs: [package-filter, tests] | |
uses: ./.github/workflows/docker.yml | |
with: | |
matrix: ${{ needs.package-filter.outputs.matrix }} | |
push: false | |
secrets: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }} |