Skip to content

Update release.yml #333

Update release.yml

Update release.yml #333

Workflow file for this run

name: Unit Test
on:
push:
branches:
- alpha
- develop
pull_request:
types: [synchronize, opened, reopened, ready_for_review]
branches:
- alpha
- develop
jobs:
unit-test:
if: |
github.event.pull_request.draft == false ||
github.event.action == 'ready_for_review'
name: unit-test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
override: true
profile: minimal
toolchain: nightly-2022-07-26
- uses: Swatinem/rust-cache@v1
- uses: taiki-e/install-action@nextest
- run: cargo nextest run --all