Skip to content

Initial cookiecutter #1

Initial cookiecutter

Initial cookiecutter #1

Workflow file for this run

name: Generate
on:
pull_request:
branches: [ main ]
jobs:
generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: '3.9'
- uses: actions/cache@v4
id: pip-cache
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-
restore-keys: |
${{ runner.os }}-pip-
- name: Install cookiecutter
run: |
pip install cookiecutter
# - name: Test cookiecutter
# run: |
# cookiecutter . --no-input
# - name: Set up JDK 21
# uses: actions/setup-java@v1
# with:
# java-version: 21
# - name: Cache Maven packages
# uses: actions/cache@v2
# with:
# path: ~/.m2
# key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
# restore-keys: ${{ runner.os }}-m2
# - name: Build with Maven
# run: cd sample && mvn clean install -ntp