Add .idea
to .gitignore
#43
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: Java CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: maven | |
- name: Build with Maven | |
run: mvn -B package --file pom.xml | |
- name: Run tests | |
run: mvn test | |
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive | |
- name: Update dependency graph | |
uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6 | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy JavaDoc π | |
uses: MathieuSoysal/Javadoc-publisher.yml@v2.4.0 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
javadoc-branch: main | |
java-version: 17 | |
target-folder: docs # url will be https://<username>.github.io/<repo>/javadoc, This can be left as nothing to generate javadocs in the root folder. | |
project: maven # or gradle | |
#publish: | |
# # Grant GITHUB_TOKEN the permissions required to make a Pages deployment | |
# permissions: | |
# pages: write # to deploy to Pages | |
# id-token: write # to verify the deployment originates from an appropriate source | |
# contents: write | |
# | |
# # Deploy to the github-pages environment | |
# environment: | |
# name: github-pages | |
# url: ${{ steps.deployment.outputs.page_url }} | |
# | |
# # Specify runner + deployment step | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Deploy JavaDoc π | |
# uses: MathieuSoysal/Javadoc-publisher.yml@v2.4.0 | |
# with: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# javadoc-branch: main | |
# java-version: 17 | |
# target-folder: docs # url will be https://<username>.github.io/<repo>/javadoc, This can be left as nothing to generate javadocs in the root folder. | |
# project: maven # or gradle | |
# | |
# - name: Convert README.md to html | |
# uses: jaywcjlove/markdown-to-html-cli@main | |
# with: | |
# source: README.md | |
# output: index.html | |
# dark-mode: false | |
# description: 'π JOKER - Java pOKER Calculator' | |
# | |
# - name: Upload artifact | |
# uses: actions/upload-pages-artifact@v1 | |
# with: | |
# path: . | |
# | |
# - name: Deploy to GitHub Pages | |
# id: deployment | |
# uses: actions/deploy-pages@v2 # or the latest "vX.X.X" version tag for this action |