Skip to content

Merge pull request #88 from rutefig/feat/ui-react #114

Merge pull request #88 from rutefig/feat/ui-react

Merge pull request #88 from rutefig/feat/ui-react #114

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
# - beta
# - nightly
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- uses: taiki-e/install-action@nextest
- uses: Swatinem/rust-cache@v2
with:
save-if: ${{ github.ref == 'refs/heads/main' }}
- run: git clone https://github.com/Hyle-org/hyle.git ../hyle
- run: cargo build --verbose
# - run: cargo nextest run --profile ci --workspace