File tree Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 4141
4242 - uses : jdx/mise-action@v2
4343 with :
44- version : 2024.12.11 # [default: latest] mise version to install
44+ version : 2025.1.0 # [default: latest] mise version to install
4545 install : true # [default: true] run `mise install`
4646 cache : true # [default: true] cache mise using GitHub's cache
4747
5252
5353 - name : Test EQL
5454 run : |
55- mise run test
55+ mise run --output test
56+
57+
5658
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22# MISE description="Build SQL into single release file"
3+
4+ #! /bin/bash
5+
6+
37set -euxo pipefail
48
59mkdir -p release
Original file line number Diff line number Diff line change 11 #! /usr/bin/env bash
22 # MISE description="Clean install of EQL"
3- set -euxo pipefail
43
5- # PGPASSWORD=$CS_DATABASE__PASSWORD dropdb --force --if-exists --username ${CS_DATABASE__USERNAME:-$USER} --port $CS_DATABASE__PORT $CS_DATABASE__NAME
6- # PGPASSWORD=$CS_DATABASE__PASSWORD createdb --username ${CS_DATABASE__USERNAME:-$USER} --port $CS_DATABASE__PORT $CS_DATABASE__NAME
4+ #! /bin/bash
5+
6+ set -euxo pipefail
77
88 connection_url=postgresql://${CS_DATABASE__USERNAME:- $USER } :@localhost:$CS_DATABASE__PORT /$CS_DATABASE__NAME
99
Original file line number Diff line number Diff line change 11 #! /usr/bin/env bash
22 # MISE description="Build, reset and run test"
3+
4+ #! /bin/bash
5+
36 set -euxo pipefail
47
58 mise run build
You can’t perform that action at this time.
0 commit comments