Skip to content

Add initial example repo with some challenges to use for testing #9

Add initial example repo with some challenges to use for testing

Add initial example repo with some challenges to use for testing #9

Workflow file for this run

name: Pull request checks
on: [pull_request]
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Check formatting
run: cargo fmt --check
clippy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run clippy
run: cargo clippy -- -Dwarnings