Skip to content

update to openapi generator 7.5.0 #121

update to openapi generator 7.5.0

update to openapi generator 7.5.0 #121

Workflow file for this run

name: Scala CI
# Support "official releases" on master, and release fixes on release/ prefixed branches
on:
push:
branches:
- 'master'
- 'releases/**'
- '!releases/**-alpha'
paths-ignore:
- 'docs/**'
- 'README.md'
pull_request:
branches:
- 'master'
# trigger on new branch/tag creation
create: []
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: 11
distribution: temurin
- name: Cache SBT ivy cache
uses: actions/cache@v1
with:
path: ~/.ivy2/cache
key: ${{ runner.os }}-sbt-ivy-cache-${{ hashFiles('**/*.sbt') }}
- name: Cache SBT
uses: actions/cache@v1
with:
path: ~/.sbt
key: ${{ runner.os }}-sbt-${{ hashFiles('**/*.sbt') }}
- name: Run tests
run: sbt ^test ^scripted
#- name: Publish
# if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v')
# env:
# BINTRAY_USER: ${{ secrets.BINTRAY_USER }}
# BINTRAY_PASS: ${{ secrets.BINTRAY_PASS }}
# run: sbt ^publish