Fix import error and prepare for PyPI #56
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: actinia tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ main ] | |
# only one run per PR/branch happens at a time, cancelling the old run when a new one starts | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# with: | |
# path: "." | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Tests of actinia-module-plugin | |
id: docker_build | |
uses: docker/build-push-action@v5 | |
with: | |
push: false | |
tags: actinia-module-plugin-test:alpine | |
context: . | |
file: docker/actinia-module-plugin-test/Dockerfile | |
no-cache: true | |
# pull: true |