Skip to content

Bump version to 0.4.7 #74

Bump version to 0.4.7

Bump version to 0.4.7 #74

Workflow file for this run

name: test in Unix environment
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
strategy:
matrix:
platform:
- ubuntu
- macos
runs-on: ${{ matrix.platform }}-latest
steps:
- name: checkout
uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: install environment
uses: ./.github/actions/install-nix
- name: add Redirectory
run: |
conan remote add redirectory https://conan.jfreeman.dev
# TODO: Possible to authenticate with ${GITHUB_TOKEN}?
- name: install dependencies
run: |
poetry install
- name: test project
run: |
poetry run pytest tests
conan export submodules/project-template-cpp/cupcake
poetry run pytest submodules/project-template-cpp/tests --builder cupcake