fix: properly scaling eval and perspective (pr #65) #129
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: Build and test | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build-nightly: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Rust nightly | |
run: rustup default stable | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- name: Install just | |
uses: extractions/setup-just@v2 | |
- name: Run tests | |
run: just test | |
build-stable: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Rust stable | |
run: rustup default stable | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- name: Install just | |
uses: extractions/setup-just@v2 | |
- name: Run tests | |
run: just test |