Fix issues with the initial draft of the quad pattern node #117
This file contains hidden or 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: Run Tests | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup rust toolchain | |
uses: moonrepo/setup-rust@v1 | |
with: | |
channel: 1.87 | |
cache-target: release | |
- name: Install just | |
uses: extractions/setup-just@v3 | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Run CI Setup | |
run: just configure-toolchain-ci | |
- name: Run CI Recipe | |
run: just ci |