chore: remove github actions and move repo to git.janezic.dev
This commit is contained in:
parent
0000047034
commit
0000048092
|
@ -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
|
|
@ -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",
|
||||
|
|
|
@ -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"]
|
||||
|
|
Loading…
Reference in New Issue