Fix actions #34
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: DevOps | ||
on: | ||
push: | ||
branches: ["main"] | ||
pull_request: | ||
branches: ["main"] | ||
permissions: | ||
contents: write | ||
# IMPORTANT: this permission is mandatory for trusted publishing | ||
id-token: write | ||
jobs: | ||
build-test-deploy: | ||
name: Build, Test, Deploy to PyPI | ||
uses: "./.github/workflows/build-reusable.yml" | ||
Check failure on line 14 in .github/workflows/build.yml GitHub Actions / DevOpsInvalid workflow file
|
||
with: | ||
Pure: false | ||
PyVersionLatest: '3.11' | ||
# Relative to github.workspace | ||
PySourceFolder: "pylibCZIrw" | ||
PkgName: pylibCZIrw | ||
CIBWBEFOREALLLINUX: yum install -y glibc-static perl-IPC-Cmd | ||
secrets: | ||
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}} |