Add the test package to the review workflow #17
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: Review | |
on: [push, pull_request] | |
jobs: | |
review: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the source code | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
uses: ./.github/actions/install | |
- name: Run linters | |
run: scons lint | |
- name: Run tests | |
run: scons test | |
- name: Compile the tagged version with the test package | |
run: > | |
conan create publish/all/conanfile.py | |
--version $(yq -r ".versions | keys | .[0]" publish/config.yml) |