Skip to content

Remove console.log from store #21

Remove console.log from store

Remove console.log from store #21

Workflow file for this run

name: Cargo Build & Test Simcraft Library
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test_simcraft:
name: Simcraft Library
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose -p simcraft
- run: cargo test --verbose -p simcraft