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]]
|
[[package]]
|
||||||
name = "aoc"
|
name = "aoc"
|
||||||
version = "47.0.0"
|
version = "48.0.0"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "autocfg"
|
name = "autocfg"
|
||||||
|
@ -102,7 +102,7 @@ checksum = "03d8c417d7a8cb362e0c37e5d815f5eb7c37f79ff93707329d5a194e42e54ca0"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "download"
|
name = "download"
|
||||||
version = "47.0.0"
|
version = "48.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"dotenvy",
|
"dotenvy",
|
||||||
"pico-args",
|
"pico-args",
|
||||||
|
@ -625,7 +625,7 @@ checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "scaffold"
|
name = "scaffold"
|
||||||
version = "47.0.0"
|
version = "48.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"dotenvy",
|
"dotenvy",
|
||||||
"pico-args",
|
"pico-args",
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
description = "template for advent of code"
|
description = "template for advent of code"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
version = "47.0.0"
|
version = "48.0.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["Matej Janežič <janezic.mj@gmail.com>"]
|
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]
|
[workspace]
|
||||||
members = ["utils/download", "utils/scaffold"]
|
members = ["utils/download", "utils/scaffold"]
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
![ci](https://github.com/janezicmatej/aoc-template/actions/workflows/ci.yml/badge.svg)
|
|
||||||
# Advent-of-Code {YEAR}
|
# 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*
|
*This is a dumbed down version of [fspoettel/advent-of-code-rust](https://github.com/fspoettel/advent-of-code-rust) with some extra features*
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue