diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b67acb7..6feb9f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,9 +25,7 @@ jobs: restore-keys: ${{ runner.os }}-cargo- - name: cargo test run: cargo test - # uncomment to enable clippy linter - # - name: cargo clippy - # run: cargo clippy -- -D warnings - # uncomment to enable format linter - # - name: cargo fmt - # run: cargo fmt --check + - name: cargo clippy + run: cargo clippy -- -D warnings + - name: cargo fmt + run: cargo fmt --check diff --git a/.github/workflows/readme-stars.yml b/.github/workflows/readme-stars.yml index 3de260e..33cc133 100644 --- a/.github/workflows/readme-stars.yml +++ b/.github/workflows/readme-stars.yml @@ -4,6 +4,7 @@ on: # !Please set a different minute than 51 if you enable this! # schedule: # - cron: "51 */6 * * *" # Every 6 hours + push: workflow_dispatch: jobs: diff --git a/Cargo.toml b/Cargo.toml index 038a1a3..5f45c8d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "advent_of_code" version = "0.11.0" authors = ["Felix Spöttel <1682504+fspoettel@users.noreply.github.com>"] -edition = "2021" +edition = "2024" default-run = "advent_of_code" publish = false diff --git a/README.md b/README.md index a155efa..1c5fd74 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# 🎄 Advent of Code {year} +# 🎄 Advent of Code 2024 Solutions for [Advent of Code](https://adventofcode.com/) in [Rust](https://www.rust-lang.org/).