Skip to content

Commit e083fd7

Browse files
authored
fix: fix tests (#4)
1 parent 22dc6e2 commit e083fd7

File tree

2 files changed

+12
-25
lines changed

2 files changed

+12
-25
lines changed

.github/workflows/run-tests.yml

Lines changed: 11 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
---
21
name: run-tests
32

43
on:
@@ -9,28 +8,29 @@ permissions: read-all
98
env:
109
SOPS_AGE_KEY: ${{ secrets.SOPS_AGE_KEY }}
1110
MISE_SOPS_AGE_KEY: ${{ secrets.SOPS_AGE_KEY }}
11+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1212

1313
jobs:
1414
docker-mise-linux:
1515
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
18-
os: [ubuntu-24.04, ubuntu-24.04-arm, macos-15]
18+
os: [ubuntu-24.04, ubuntu-24.04-arm]
1919
timeout-minutes: 30
2020
steps:
21-
- name: Checkout Code
21+
- name: 🛠️ Checkout Code
2222
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2323

24-
- name: Run mise
24+
- name: 🚀 Run mise
2525
run: |
26-
docker run --rm -it \
26+
docker run --rm -i \
2727
--env SOPS_AGE_KEY --env MISE_SOPS_AGE_KEY \
2828
-v "$PWD:/mnt" \
2929
-v "/var/run/docker.sock:/var/run/docker.sock" \
3030
--workdir /mnt \
31-
bash bash -c 'set -euxo pipefail && \
31+
bash bash -c 'set -euo pipefail && \
3232
apk add docker && \
33-
wget https://mise.run -O - | sh && \
33+
wget -q https://mise.run -O - | sh && \
3434
eval "$(~/.local/bin/mise activate bash)" && \
3535
mise run "create:*:*" && \
3636
mise run "delete:*:*" \
@@ -40,28 +40,15 @@ jobs:
4040
runs-on: ${{ matrix.os }}
4141
strategy:
4242
matrix:
43-
os: [ubuntu-24.04, ubuntu-24.04-arm, macos-15]
43+
os: [ubuntu-24.04, ubuntu-24.04-arm]
4444
timeout-minutes: 30
4545
steps:
46-
- name: Checkout Code
46+
- name: 🛠️ Checkout Code
4747
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4848

49-
- name: Run mise
49+
- name: 🚀 Run mise
5050
run: |
51-
wget https://mise.run -O - | sh
51+
wget -q https://mise.run -O - | sh
5252
eval "$(~/.local/bin/mise activate bash)"
5353
mise run "create:*:*"
5454
mise run "delete:*:*"
55-
56-
mise-windows:
57-
runs-on: windows-2025
58-
timeout-minutes: 30
59-
steps:
60-
- name: Checkout Code
61-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
62-
63-
- name: Run mise
64-
run: |
65-
scoop install mise
66-
mise run "create:*:*"
67-
mise run "delete:*:*"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ docker run --rm -it \
1818
--workdir /mnt \
1919
bash bash -c 'set -euxo pipefail && \
2020
apk add docker && \
21-
wget https://mise.run -O - | sh && \
21+
wget -q https://mise.run -O - | sh && \
2222
eval "$(~/.local/bin/mise activate bash)" && \
2323
mise run "create:*:*" && \
2424
mise run "delete:*:*" \

0 commit comments

Comments
 (0)