File tree Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -82,12 +82,19 @@ jobs:
8282 working-directory : docker
8383 run : docker compose ps
8484
85- - name : Install Hurl
86- run : |
87- VER=6.1.1
88- DEB=hurl_${VER}_amd64.deb
89- curl --location --no-progress-meter --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/$VER/$DEB
90- sudo dpkg --install $DEB
85+ - name : Install mise to install Hurl
86+ uses : jdx/mise-action@v2.1.11 # https://github.com/jdx/mise-action
87+ with :
88+ version : 2025.4.2 # [default: latest] mise version to install
89+ install : true # [default: true] run `mise install`
90+ cache : true # [default: true] cache mise using GitHub's cache
91+ log_level : info # [default: info] log level
92+ working_directory : tests # [default: .] directory to run mise in
93+ env :
94+ # Workaround: don't install some dependencies that we don't use (go, node, python)
95+ # See: https://github.com/jdx/mise-action/issues/183
96+ # https://mise.jdx.dev/configuration/settings.html#disable_tools
97+ MISE_DISABLE_TOOLS : go,node,python
9198
9299 - name : Show Hurl version
93100 run : hurl --version
You can’t perform that action at this time.
0 commit comments