Skip to content

Create release binary on version tag #57

Create release binary on version tag

Create release binary on version tag #57

Workflow file for this run

name: Tests
on: [pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
format:
name: Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: cargo fmt --check
build_and_test:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: extractions/setup-just@v1
- run: just install build-ui
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo test --verbose