chore: remove github actions and move repo to git.janezic.dev

This commit is contained in:
Matej Janezic 2024-11-29 00:15:56 +01:00
parent 0000047034
commit 0000048092
Signed by: janezicmatej
GPG Key ID: 4298E230ED37B2C0
4 changed files with 5 additions and 42 deletions

View File

@ -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

6
Cargo.lock generated
View File

@ -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",

View File

@ -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č <janezic.mj@gmail.com>"]
repository = "https://github.com/janezicmatej/aoc-template.git"
repository = "https://git.janezic.dev/janezicmatej/aoc-template.git"
[workspace]
members = ["utils/download", "utils/scaffold"]

View File

@ -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*