feat: allow install specific version from https://mise.run #1800 (#2123) #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
tags: ["v*"] | |
branches: ["main", "mise"] | |
pull_request: | |
branches: ["main"] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
CARGO_TERM_COLOR: always | |
CARGO_INCREMENTAL: 0 | |
MISE_TRUSTED_CONFIG_PATHS: ${{ github.workspace }} | |
permissions: | |
pull-requests: write | |
jobs: | |
unit: | |
runs-on: ubuntu-latest | |
#container: ghcr.io/jdx/mise:github-actions | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.event.pull_request.head.ref }} | |
token: ${{ secrets.RTX_GITHUB_BOT_TOKEN || github.token }} | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: { toolchain: nightly, components: rustfmt } | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: { toolchain: stable, components: rustfmt } | |
- uses: taiki-e/install-action@v2 | |
with: | |
tool: nextest,cargo-deny,cargo-msrv,cargo-machete,usage-cli | |
- name: Install direnv | |
run: sudo apt-get update; sudo apt-get install direnv | |
- run: cargo nextest run --all-features | |
env: | |
RUST_BACKTRACE: "1" | |
- run: cargo deny check | |
- run: cargo msrv verify | |
- run: cargo machete --with-metadata | |
- run: ./scripts/test-standalone.sh | |
- run: cargo build --all-features | |
- run: ./target/debug/mise settings set experimental true | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.local/share/mise/installs | |
~/.local/share/mise/plugins | |
key: mise-tools-${{ hashFiles('.mise.toml') }} | |
restore-keys: mise-tools | |
- run: ./target/debug/mise install | |
- run: ./target/debug/mise run render | |
- if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == 'jdx/mise' | |
run: ./target/debug/mise run lint-fix && git diff HEAD | |
- if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == 'jdx/mise' | |
uses: EndBug/add-and-commit@v9 | |
with: | |
push: true | |
author_name: mise[bot] | |
author_email: [email protected] | |
- uses: actions-rust-lang/rustfmt@v1 | |
- run: ./target/debug/mise run lint | |
coverage: | |
name: coverage-${{matrix.tranche}} | |
#container: ghcr.io/jdx/mise:github-actions | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
strategy: | |
fail-fast: false | |
matrix: | |
tranche: [0, 1, 2, 3] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
shared-key: coverage | |
save-if: ${{ github.ref_name == 'main' && matrix.tranche == 0 }} | |
- name: Install build and test dependencies | |
run: | | |
sudo apt-get update && sudo apt-get install \ | |
bison \ | |
build-essential \ | |
direnv \ | |
fd-find \ | |
fish \ | |
pipx \ | |
python3-venv \ | |
zsh | |
- run: | | |
mkdir -p "$HOME/.local/bin" | |
ln -s "$(which fdfind)" "$HOME/.local/bin/fd" | |
echo "$HOME/.local/bin" >> "$GITHUB_PATH" | |
- uses: taiki-e/install-action@v2 | |
with: | |
tool: cargo-llvm-cov,mise,usage-cli | |
- name: Test w/ coverage | |
uses: nick-fields/retry@v3 | |
env: | |
GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
RUST_BACKTRACE: "1" | |
MISE_GITHUB_BOT_TOKEN: ${{ secrets.RTX_GITHUB_BOT_TOKEN }} | |
MISE_EXPERIMENTAL: "1" | |
TEST_TRANCHE: ${{matrix.tranche}} | |
TEST_TRANCHE_COUNT: 4 | |
TEST_ALL: ${{github.ref_name == 'release' && '1' || '0'}} | |
with: | |
timeout_minutes: 30 | |
retry_wait_seconds: 30 | |
max_attempts: 2 | |
command: mise tasks run test:coverage | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: coverage-${{matrix.tranche}}.lcov | |
path: coverage-${{matrix.tranche}}.lcov | |
if-no-files-found: error | |
coverage-report: | |
name: coverage-report | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
needs: coverage | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
pattern: coverage-*.lcov | |
path: . | |
merge-multiple: true | |
- run: | | |
pip install lcov_cobertura | |
npx lcov-result-merger 'coverage-*.lcov' coverage.lcov | |
lcov_cobertura coverage.lcov --output coverage.xml | |
- uses: codacy/codacy-coverage-reporter-action@v1 | |
continue-on-error: true | |
with: | |
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} | |
coverage-reports: coverage.lcov | |
- uses: irongut/[email protected] | |
with: | |
filename: coverage.xml | |
badge: true | |
format: markdown | |
output: both | |
- name: Add Coverage PR Comment | |
uses: marocchino/sticky-pull-request-comment@v2 | |
if: github.event_name == 'pull_request' | |
continue-on-error: true | |
with: | |
recreate: true | |
path: code-coverage-results.md |