1
1
mirror of https://github.com/theoludwig/advent_of_code.git synced 2025-05-18 19:27:51 +02:00

docs: add contributing templates

This commit is contained in:
2024-01-27 18:53:26 +01:00
parent abcf7c5163
commit fcd57f1cf6
16 changed files with 333 additions and 11 deletions

View File

@ -14,7 +14,7 @@ jobs:
runs-on: "ubuntu-latest"
strategy:
matrix:
rust-version: ["1.70.0", "stable"]
rust-version: ["1.74.0", "stable"]
steps:
- uses: "actions/checkout@v4.1.1"
@ -48,3 +48,17 @@ jobs:
with:
configFile: ".commitlintrc.json"
failOnWarnings: true
lint-prettier:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4.1.1"
- name: "Setup Node.js"
uses: "actions/setup-node@v4.0.1"
with:
node-version: "20.11.0"
- run: "npm install --global prettier@3.2.4"
- run: "prettier . --check"