From 00000480929c1c78f25d00c3bc181c7db7af995f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Jane=C5=BEi=C4=8D?= Date: Fri, 29 Nov 2024 00:15:56 +0100 Subject: [PATCH] chore: remove github actions and move repo to git.janezic.dev --- .github/workflows/ci.yml | 36 ------------------------------------ Cargo.lock | 6 +++--- Cargo.toml | 4 ++-- README.md | 1 - 4 files changed, 5 insertions(+), 42 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 00123ca..000000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: Check - -on: push - -env: - CARGO_TERM_COLOR: always - -jobs: - check: - runs-on: ubuntu-latest - name: Check - steps: - - uses: actions/checkout@v3 - - name: cargo check - run: cargo check - test: - runs-on: ubuntu-latest - name: Test - steps: - - uses: actions/checkout@v3 - - name: cargo test - run: cargo test - clippy: - runs-on: ubuntu-latest - name: Lint (clippy) - steps: - - uses: actions/checkout@v3 - - name: cargo clippy - run: cargo clippy -- -D warnings - fmt: - runs-on: ubuntu-latest - name: Format - steps: - - uses: actions/checkout@v3 - - name: cargo fmt - run: cargo fmt --check diff --git a/Cargo.lock b/Cargo.lock index aebf6fb..d75562f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,7 +19,7 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" [[package]] name = "aoc" -version = "47.0.0" +version = "48.0.0" [[package]] name = "autocfg" @@ -102,7 +102,7 @@ checksum = "03d8c417d7a8cb362e0c37e5d815f5eb7c37f79ff93707329d5a194e42e54ca0" [[package]] name = "download" -version = "47.0.0" +version = "48.0.0" dependencies = [ "dotenvy", "pico-args", @@ -625,7 +625,7 @@ checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde" [[package]] name = "scaffold" -version = "47.0.0" +version = "48.0.0" dependencies = [ "dotenvy", "pico-args", diff --git a/Cargo.toml b/Cargo.toml index 1d4c6de..a70c0e9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [workspace.package] description = "template for advent of code" readme = "README.md" -version = "47.0.0" +version = "48.0.0" edition = "2021" license = "MIT" authors = ["Matej Janežič "] -repository = "https://github.com/janezicmatej/aoc-template.git" +repository = "https://git.janezic.dev/janezicmatej/aoc-template.git" [workspace] members = ["utils/download", "utils/scaffold"] diff --git a/README.md b/README.md index 09e8a00..61728dd 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,3 @@ -![ci](https://github.com/janezicmatej/aoc-template/actions/workflows/ci.yml/badge.svg) # Advent-of-Code {YEAR} *This is a dumbed down version of [fspoettel/advent-of-code-rust](https://github.com/fspoettel/advent-of-code-rust) with some extra features*