Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
connorslade committed Nov 26, 2023
1 parent b515ca9 commit d2e8a35
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/aoc_2021.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: aoc_2021
on:
workflow_dispatch:
push:
paths:
- "common/**"
- "aoc_2021/**"

env:
Expand All @@ -18,6 +20,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build -p ${{ env.CRATE }}}
run: cargo build -p ${{ env.CRATE }}
- name: Test
run: cargo test -p ${{ env.CRATE }}}
run: cargo test -p ${{ env.CRATE }}
6 changes: 4 additions & 2 deletions .github/workflows/aoc_2022.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: aoc_2022
on:
workflow_dispatch:
push:
paths:
- "common/**"
- "aoc_2022/**"

env:
Expand All @@ -18,6 +20,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build -p ${{ env.CRATE }}}
run: cargo build -p ${{ env.CRATE }}
- name: Test
run: cargo test -p ${{ env.CRATE }}}
run: cargo test -p ${{ env.CRATE }}
6 changes: 4 additions & 2 deletions .github/workflows/bin.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: bin
on:
workflow_dispatch:
push:
paths:
- "common/**"
- "src/**"
- "Cargo.toml"

Expand All @@ -19,6 +21,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build -p ${{ env.CRATE }}}
run: cargo build -p ${{ env.CRATE }}
- name: Test
run: cargo test -p ${{ env.CRATE }}}
run: cargo test -p ${{ env.CRATE }}
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# 🎄 Advent-Of-Code [![CI](https://github.com/Basicprogrammer10/Advent-Of-Code-2021/actions/workflows/rust.yml/badge.svg)](https://github.com/Basicprogrammer10/Advent-Of-Code-2021/actions/workflows/rust.yml) ![GitHub last commit](https://img.shields.io/github/last-commit/Basicprogrammer10/Advent-Of-Code-2021)
# 🎄 Advent-Of-Code [![bin](https://github.com/Basicprogrammer10/advent-of-code/actions/workflows/bin.yml/badge.svg)](https://github.com/Basicprogrammer10/advent-of-code/actions/workflows/bin.yml) ![GitHub last commit](https://img.shields.io/github/last-commit/Basicprogrammer10/advent-of-code)

My Rusty [Solutions](https://github.com/Basicprogrammer10/Advent-Of-Code-2021/tree/master/src/solutions) to [Advent Of Code 2022](https://adventofcode.com)

## [2022](https://adventofcode.com/2022) (84%)
## [2022](https://adventofcode.com/2022) [![aoc_2022](https://github.com/Basicprogrammer10/advent-of-code/actions/workflows/aoc_2022.yml/badge.svg)](https://github.com/Basicprogrammer10/advent-of-code/actions/workflows/aoc_2022.yml)

- Day 01: Calorie Counting [[A](https://github.com/Basicprogrammer10/Advent-Of-Code/blob/master/src/solutions/year_2022/day_01.rs#L10), [B](https://github.com/Basicprogrammer10/Advent-Of-Code/blob/master/src/solutions/year_2022/day_01.rs#L17)]
- Day 02: Rock Paper Scissors [[A](https://github.com/Basicprogrammer10/Advent-Of-Code/blob/master/src/solutions/year_2022/day_02.rs#L10), [B](https://github.com/Basicprogrammer10/Advent-Of-Code/blob/master/src/solutions/year_2022/day_02.rs#L29)]
Expand All @@ -26,7 +26,7 @@ My Rusty [Solutions](https://github.com/Basicprogrammer10/Advent-Of-Code-2021/tr
- Day 22 Monkey Math [[A](https://github.com/Basicprogrammer10/Advent-Of-Code/blob/master/src/solutions/year_2022/day_22.rs#L13), [B](https://github.com/Basicprogrammer10/Advent-Of-Code/blob/master/src/solutions/year_2022/day_22.rs#L21)]
- Day 25 Monkey Math [[A](https://github.com/Basicprogrammer10/Advent-Of-Code/blob/master/src/solutions/year_2022/day_25.rs#L10), [B](https://github.com/Basicprogrammer10/Advent-Of-Code/blob/master/src/solutions/year_2022/day_25.rs#L15)]

## [2021](https://adventofcode.com/2021) (48%)
## [2021](https://adventofcode.com/2021) [![aoc_2021](https://github.com/Basicprogrammer10/advent-of-code/actions/workflows/aoc_2021.yml/badge.svg)](https://github.com/Basicprogrammer10/advent-of-code/actions/workflows/aoc_2021.yml)

- Day 01: Sonar Sweep [[A](https://github.com/Basicprogrammer10/Advent-Of-Code/blob/master/src/solutions/year_2021/day_01.rs#L10), [B](https://github.com/Basicprogrammer10/Advent-Of-Code/blob/master/src/solutions/year_2021/day_01.rs#L20)]
- Day 02: Dive! [[A](https://github.com/Basicprogrammer10/Advent-Of-Code/blob/master/src/solutions/year_2021/day_02.rs#L10), [B](https://github.com/Basicprogrammer10/Advent-Of-Code/blob/master/src/solutions/year_2021/day_02.rs#L30)]
Expand Down

0 comments on commit d2e8a35

Please sign in to comment.