#54: Check for existing instance before creating a new one (#55) #45
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Project Keeper Verify | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
project-keeper-verify: | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "temurin" | |
java-version: 11 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" | |
cache-dependency-path: | | |
go.sum | |
.github/workflows/project-keeper-verify.yml | |
.github/workflows/project-keeper.sh | |
- name: Set up NPM | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: "npm" | |
cache-dependency-path: "**/package-lock.json" | |
- name: Cache Project Keeper | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-pk-${{ hashFiles('.github/workflows/project-keeper.sh') }} | |
restore-keys: | | |
${{ runner.os }}-pk- | |
- name: Project Keeper Verify | |
run: ./.github/workflows/project-keeper.sh |