Skip to content

chore: Restore Label size to original #34

chore: Restore Label size to original

chore: Restore Label size to original #34

Workflow file for this run

name: CI
on:
push:
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
profile: [dev, release]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- run: rustup update stable && rustup default stable
- name: Build
run: cargo build --verbose --locked --profile ${{ matrix.profile }}
- name: Test
run: cargo test --verbose --locked --profile ${{ matrix.profile }}