Skip to content

Commit 5aae858

Browse files
committed
update mise version and add bash shebang to tasks
1 parent 6a1b355 commit 5aae858

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

.github/workflows/test-eql.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
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

@@ -52,5 +52,7 @@ jobs:
5252

5353
- name: Test EQL
5454
run: |
55-
mise run test
55+
mise run --output test
56+
57+
5658

tasks/build.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#!/usr/bin/env bash
22
#MISE description="Build SQL into single release file"
3+
4+
#!/bin/bash
5+
6+
37
set -euxo pipefail
48

59
mkdir -p release

tasks/reset.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
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

tasks/test.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
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

0 commit comments

Comments
 (0)