diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..5061965 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,13 @@ +name: CI # Continuous Integration + +on: + pull_request: + +jobs: + fmt: + runs-on: ubuntu-24.04 + steps: + -name: Checkout repository + uses: actions/checkout@v4 + -name: Check formatting + run: cargo fmt --check --all