Skip to content

Commit

Permalink
1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaspazza committed Aug 23, 2024
1 parent e71132d commit e933005
Show file tree
Hide file tree
Showing 9 changed files with 56 additions and 26 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/commit_validation.yml

This file was deleted.

34 changes: 34 additions & 0 deletions .github/workflows/validation_delaguardo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Commit validation - Delaguardo flavor
on: [push]
jobs:
clojure:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest] # , windows-latest There is a path issue
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare java
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '22'

- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
cli: 1.11.4.1474 # Clojure CLI based on tools.deps
bb: 1.3.191 # Babashka
clj-kondo: 2024.08.01 # Clj-kondo
cljfmt: 0.10.2 # cljfmt
zprint: 1.2.9 # zprint
- name: Cache clojure dependencies
uses: actions/cache@v4
with:
path: /home/runner/.m2/repository
key: cljdeps-${{ hashFiles('deps.edn', 'bb.edn') }}
restore-keys: cljdeps-
- name: Test
run: bb heph-task gha

11 changes: 11 additions & 0 deletions .github/workflows/validation_docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Commit validation - docker flavor
run-name: Test ${{ github.event.head_commit.message }}
on: [push]
jobs:
run-bb:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Base image
uses: docker://hephaistox/gha-image:1.0.1
2 changes: 1 addition & 1 deletion bb.edn
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
;; The file is updated automatically
{:deps {org.clojars.hephaistox/automaton-build #:mvn{:version "2.0.2"}}
{:deps {org.clojars.hephaistox/automaton-build #:mvn{:version "3.0.0"}}
:paths []
:tasks
{:requires
Expand Down
8 changes: 4 additions & 4 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
{:antq {:deps {com.github.liquidz/antq {:mvn/version "2.9.1217"}}
:main-opts ["-m" "antq.core"]}
:bb-deps {:extra-deps {org.clojars.hephaistox/automaton-build
#:mvn{:version "2.0.2"}}}
#:mvn{:version "3.0.0"}}}
:build {:extra-deps {org.clojars.hephaistox/automaton-build
#:mvn{:version "2.0.2"}}
#:mvn{:version "3.0.0"}}
:ns-default build}
:cljs-deps {:extra-deps {binaryage/devtools #:mvn{:version "1.0.7"}
clj-commons/pushy #:mvn{:version "0.3.10"}
Expand Down Expand Up @@ -41,7 +41,7 @@
:jvm-opts ["-Dheph-conf=env/test/config.edn,env/common_config.edn"]}
:env-development-repl
{:extra-deps {org.clojars.hephaistox/automaton-core #:mvn{:version
"1.2.9"}
"1.3.0"}
org.clojure/core.async #:mvn{:version "1.6.681"}}
:extra-paths ["env/development/resources/"
"env/development/src/clj/"
Expand Down Expand Up @@ -69,7 +69,7 @@
metosin/reitit #:mvn{:version "0.7.1"}
metosin/ring-http-response #:mvn{:version "0.9.4"}
mount/mount #:mvn{:version "0.1.19"}
org.clojars.hephaistox/automaton-core #:mvn{:version "1.2.9"}
org.clojars.hephaistox/automaton-core #:mvn{:version "1.3.0"}
ring-cors/ring-cors #:mvn{:version "0.1.13"}
ring/ring #:mvn{:version "1.12.2"}
ring/ring-anti-forgery #:mvn{:version "1.3.1"}
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
},
"workspaces": [],
"devDependencies": {
"@hephaistox/tailwind-config": "github:hephaistox/tailwind-config#dev",
"@hephaistox/tailwind-config": "github:hephaistox/tailwind-config#main",
"@tailwindcss/forms": "^0.5.7",
"highlight.js": "^11.10.0",
"karma": "^6.4.4",
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<packaging>jar</packaging>
<groupId>org.clojars.hephaistox</groupId>
<artifactId>automaton-web</artifactId>
<version>1.2.15</version>
<version>1.3.0</version>
<name>automaton-web</name>
<dependencies>
<dependency>
Expand All @@ -30,7 +30,7 @@
<dependency>
<groupId>org.clojars.hephaistox</groupId>
<artifactId>automaton-core</artifactId>
<version>1.2.9</version>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>ring-cors</groupId>
Expand Down
2 changes: 1 addition & 1 deletion version.edn
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
;; Last generated version, note a failed push consume a number
{:version "1.2.15"}
{:version "1.3.0"}

0 comments on commit e933005

Please sign in to comment.