Skip to content

feat(config): implement global config to wire up config command #146

feat(config): implement global config to wire up config command

feat(config): implement global config to wire up config command #146

Workflow file for this run

# Orchestrates all CI checks on PRs and pushes to main.
name: CI
on:
# TODO: remove refactor from below once this makes it to main.
push:
branches: [main, refactor]
pull_request:
branches: [main, refactor]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
check:
uses: ./.github/workflows/check.yml
permissions:
contents: read
with:
ref: ${{ github.event.pull_request.head_sha || github.sha }}
build:
uses: ./.github/workflows/build.yml
permissions:
contents: read
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
unit-test:
uses: ./.github/workflows/unit-test.yml
permissions:
contents: read
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}