Skip to content

22 skalowanie wysokości fraktala #59

22 skalowanie wysokości fraktala

22 skalowanie wysokości fraktala #59

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
combined:
name: Lint, Build, and Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Install Just
run: cargo install just
- name: Run Lint, Build, and Test
run: |
just lint
just build
just test