Skip to content

Commit

Permalink
Merge pull request #1 from Basicprogrammer10/updates
Browse files Browse the repository at this point in the history
Updates
  • Loading branch information
connorslade authored Nov 26, 2023
2 parents 6d7d1db + f05148d commit a07b67a
Show file tree
Hide file tree
Showing 86 changed files with 2,159 additions and 793 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/aoc_2021.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: aoc_2021
on:
workflow_dispatch:
push:
paths:
- "common/**"
- "aoc_2021/**"

env:
CRATE: aoc_2021

jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build -p ${{ env.CRATE }}
- name: Test
run: cargo test -p ${{ env.CRATE }}
25 changes: 25 additions & 0 deletions .github/workflows/aoc_2022.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: aoc_2022
on:
workflow_dispatch:
push:
paths:
- "common/**"
- "aoc_2022/**"

env:
CRATE: aoc_2022

jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build -p ${{ env.CRATE }}
- name: Test
run: cargo test -p ${{ env.CRATE }}
25 changes: 25 additions & 0 deletions .github/workflows/aoc_2023.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: aoc_2023
on:
workflow_dispatch:
push:
paths:
- "common/**"
- "aoc_2023/**"

env:
CRATE: aoc_2023

jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}

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

env:
CRATE: advent_of_code

jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build -p ${{ env.CRATE }}
- name: Test
run: cargo test -p ${{ env.CRATE }}
11 changes: 0 additions & 11 deletions .github/workflows/rust.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/scaffold.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: scaffold
on:
workflow_dispatch:
push:
paths:
- "scaffold/**"
- "Cargo.toml"

env:
CRATE: scaffold

jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build -p ${{ env.CRATE }}
- name: Test
run: cargo test -p ${{ env.CRATE }}
Loading

0 comments on commit a07b67a

Please sign in to comment.