Skip to content

👷 add basic ci

👷 add basic ci #19

Workflow file for this run

name: :construction_worker:CI
on:
push:
branches: ["main"]
pull_request:
types: [opened, synchronize]
jobs:
check_lint:
uses: ./.github/workflows/checkLint.yml
secrets: inherit
check_type:
uses: ./.github/workflows/checkType.yml
secrets: inherit
unit_test:
uses: ./.github/workflows/unitTest.yml
secrets: inherit
Ready_To_Review:
needs: [check_lint, check_type, unit_test]
runs-on: ubuntu-latest
steps:
- name: Reminder to review
run: echo 'Please review this PRRRR!'