Skip to content

👷 add basic ci

👷 add basic ci #24

Workflow file for this run

name: 👷CI
on:
push:
branches: ["main"]
pull_request:
types: [opened, synchronize]
jobs:
gg:
runs-on: ubuntu-latest
steps:
- name: hello world
run: echo "hello world"
check_lint:
uses: ./.github/workflows/checkLint.yml
secrets: inherit
check_type:
uses: ./.github/workflows/checkType.yml

Check failure on line 21 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

error parsing called workflow ".github/workflows/main.yml" -> "./.github/workflows/checkType.yml" : the `uses' attribute must be a path, a Docker image, or owner/repo@ref
secrets: inherit
unit_test:
uses: ./.github/workflows/unitTest.yml
secrets: inherit
ready_to_review:
needs: [check_lint, check_type, unit_test]
uses: ./.github/workflows/readyToReview.yml
secrets: inherit