Skip to content

Commit

Permalink
cicd jdk versions and gitignore. (#11)
Browse files Browse the repository at this point in the history
- Note JDK LTS versions and removed unsupported version in github cicd workflow. 
- Added vscode calva related dirs to gitignore.
  • Loading branch information
wdhowe authored Jan 4, 2021
1 parent 2cdd195 commit b9bdc65
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/clojure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ jobs:

strategy:
matrix:
jdk_version: [8, 11, 14, 15, 16]
# JDK LTS: 8, 11, 17
jdk_version: [8, 11, 15, 16]
os: [ubuntu-latest]

container:
Expand Down
20 changes: 11 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
/target
/classes
/.calva
/checkouts
profiles.clj
pom.xml
pom.xml.asc
*.jar
*.class
/.calva
/classes
.clj-kondo/
.hg/
.hgignore
*.jar
/.lein-*
.lsp/
/.nrepl-port
.hgignore
.hg/
pom.xml
pom.xml.asc
profiles.clj
/target

0 comments on commit b9bdc65

Please sign in to comment.