Skip to content

[CI] Check out submodules #6

[CI] Check out submodules

[CI] Check out submodules #6

Workflow file for this run

name: Advent of Code 2022
on:
push:
branches:
- main
paths:
- .github/workflows/2022.yml
- 2022/**
pull_request:
paths:
- .github/workflows/2022.yml
- 2022/**
jobs:
build-2022:
runs-on: ubuntu-latest
defaults:
run:
working-directory: "2022"
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.PAT }}
submodules: true
- name: Build
run: cargo build
- name: Test
run: cargo test