我想在Windows上创建基本的github-actions作业,以从msi
下载的https://dl.bintray.com/loadimpact/windows/k6-v0.25.1-amd64.msi
软件包的形式安装k6(https://docs.k6.io/docs/installation#section-windows-msi-installer)。
jobs:
k6_test:
name: k6 on windows
runs-on: windows-latest
steps:
- name: Install k6 from msi package
run: ...
- name: Check that it works
run: k6.exe --help