Skip to content

CI: Switch to use build package; merge Conan 1/2 jobs; use trusted pu… #15

CI: Switch to use build package; merge Conan 1/2 jobs; use trusted pu…

CI: Switch to use build package; merge Conan 1/2 jobs; use trusted pu… #15

Workflow file for this run

on: [push, pull_request]
name: "conventions"
jobs:
bincrafters-conventions-test:
name: Test with Conan v${{ matrix.conan_version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
if: github.event_name == 'push'
strategy:
fail-fast: false
matrix:
os: ["ubuntu-22.04", "windows-2019", "macos-11.0"]
python_version:
- "3.8"
- "3.12"
conan_version:
- "1"
- "2"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
- name: "Build"
shell: bash
run: |
pip install conan=="${{ matrix.conan_version }}.*"
pip install -e .[test]
python -m pip install build
python -m build
- name: "Test"
shell: bash
run: |
cd tests
pytest -v -s --cov=bincrafters_conventions
mv .coverage ..
cd ..
codecov
bincrafers-conventions-deploy:
name: Deploy Conventions to PyPi
runs-on: ubuntu-22.04
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
needs: [bincrafters-conventions-test-v1, bincrafters-conventions-test-v2]

Check failure on line 44 in .github/workflows/conventions.yml

View workflow run for this annotation

GitHub Actions / conventions

Invalid workflow file

The workflow is not valid. .github/workflows/conventions.yml (Line: 44, Col: 13): Job 'bincrafers-conventions-deploy' depends on unknown job 'bincrafters-conventions-test-v1'. .github/workflows/conventions.yml (Line: 44, Col: 46): Job 'bincrafers-conventions-deploy' depends on unknown job 'bincrafters-conventions-test-v2'.
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Build
run: |
python -m pip install build
python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1