Skip to content

Add CI and CD

Add CI and CD #2

Workflow file for this run

name: CI and CD
on:
push:
pull_request:
jobs:
ci:
name: CI
uses: Lucky3028/shared-workflows/.github/workflows/kotlin-ci.yaml@main
cd:
name: CD
needs:
- ci
uses: Lucky3028/shared-workflows/.github/workflows/kotlin-ci.yaml@main
if: github.ref == 'refs/heads/main'