Skip to content

Nice solution for day 4 #11

Nice solution for day 4

Nice solution for day 4 #11

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
workflow_dispatch:
workflow_call:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- run: cargo build
- run: cargo build --release
- run: cargo test
- run: cargo test --release