fix: Fix the generation for mesonpy build-system #1096
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: main | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
check-branch: | |
if: ${{ github.event_name == 'pull_request' }} | |
runs-on: ubuntu-latest | |
timeout-minutes: 2 | |
concurrency: | |
group: check-pr-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Check if the PR's branch is updated | |
uses: osl-incubator/gh-check-pr-is-updated@1.0.0 | |
with: | |
remote_branch: origin/main | |
pr_sha: ${{ github.event.pull_request.head.sha }} | |
test: | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ci-main-tests-${{ github.ref }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
miniforge-version: latest | |
environment-file: conda/dev.yaml | |
channels: conda-forge,nodefaults | |
activate-environment: scicookie | |
auto-update-conda: true | |
conda-solver: libmamba | |
- name: Check poetry.lock | |
run: poetry check | |
- name: Install dependencies | |
run: | | |
poetry config virtualenvs.create false | |
poetry install | |
- name: Run tests | |
run: makim tests.unittest | |
- name: Run style checks | |
run: | | |
pre-commit install | |
makim tests.lint | |
# - name: Semantic Release PR Title Check | |
# uses: osl-incubator/semantic-release-pr-title-check@v1.4.3 | |
# if: success() || failure() | |
# with: | |
# convention-name: conventionalcommits | |
smoke-test: | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ci-main-smoke-${{ matrix.smoke_file }}-${{ github.ref }} | |
cancel-in-progress: true | |
strategy: | |
matrix: | |
smoke_file: | |
- automation.sh | |
- auto-format-tools.sh | |
- build-systems.sh | |
- containers.sh | |
- docs.sh | |
- files.sh | |
- linters.sh | |
- tests.sh | |
- virtual-envs.sh | |
- cli.sh | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
miniforge-version: latest | |
environment-file: conda/dev.yaml | |
channels: conda-forge,nodefaults | |
activate-environment: scicookie | |
auto-update-conda: true | |
conda-solver: libmamba | |
- name: Install dependencies | |
run: poetry install | |
- name: Run Smoke Test (${{ matrix.smoke_file }}) | |
run: bash ./tests/smoke/${{ matrix.smoke_file }} |