Skip to content

added new ci workflow #1

added new ci workflow

added new ci workflow #1

Workflow file for this run

name: CI Checks
on:
push:
branches:
- "master"
pull_request:
branches:
- "master"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
unit-tests:
uses: carousell/cicd-workflows/.github/workflows/go-unit-tests.yml@main
with:
bu: cs
before_script: |
echo "----Enabling GoPath----"
env
printenv
secrets: inherit
ci-common:
uses: carousell/cicd-workflows/.github/workflows/ci-common.yml@main

Check failure on line 27 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

error parsing called workflow ".github/workflows/ci.yml" -> "carousell/cicd-workflows/.github/workflows/ci-common.yml@main" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
with:
bu: cs
secrets: inherit
ci-status:
uses: carousell/cicd-workflows/.github/workflows/ci-status.yml@main
if: ${{ always() }}
needs:
- unit-tests
- ci-common
with:
bu: cs
secrets: inherit