fix: improve GitHub Actions workflow by restructuring installation steps for clarity

This commit is contained in:
2026-03-06 21:40:09 +07:00
parent 430ad2efeb
commit aa77063703

View File

@@ -13,11 +13,17 @@ jobs:
- uses: actions/checkout@v6
- name: Install mise
run: curl https://mise.run | sh
run: |
curl https://mise.run | sh
echo "$HOME/.local/bin" >> $GITHUB_PATH
echo "$HOME/.local/share/mise/shims" >> $GITHUB_PATH
- name: Setup environment
- name: Install tools via mise
run: |
mise install
- name: Setup
run: |
just setup
- name: Run tests