diff --git a/.github/actions/install/action.yml b/.github/actions/install/action.yml index b12f64676940..5974d171cd61 100644 --- a/.github/actions/install/action.yml +++ b/.github/actions/install/action.yml @@ -39,11 +39,6 @@ inputs: runs: using: "composite" steps: - - name: Set up rust - # TODO: figure out how to get maturin to install this maybe? - # or otherwise get this matching the 'other project's' rust expectations? - uses: dtolnay/rust-toolchain@1.85.0 - - name: Run install script (macOS, Ubuntu) if: runner.os == 'macos' || runner.os == 'linux' shell: bash diff --git a/.github/workflows/check_wheel_availability.yaml b/.github/workflows/check_wheel_availability.yaml index 45f1642aac35..75dc4264c5f0 100644 --- a/.github/workflows/check_wheel_availability.yaml +++ b/.github/workflows/check_wheel_availability.yaml @@ -1,17 +1,16 @@ name: 🚨 Check Dependency Artifacts -# TODO: re-enable once we are using a release of chia_rs on: push: branches: - # - "long_lived/**" + - "long_lived/**" - main - "release/**" release: types: [published] -# pull_request: -# branches: -# - "**" + pull_request: + branches: + - "**" concurrency: group: ${{ github.event_name == 'pull_request' && format('{0}-{1}', github.workflow_ref, github.event.pull_request.number) || github.run_id }} diff --git a/.github/workflows/test-install-scripts.yml b/.github/workflows/test-install-scripts.yml index 8d5052c8a048..69099dd4a3ad 100644 --- a/.github/workflows/test-install-scripts.yml +++ b/.github/workflows/test-install-scripts.yml @@ -1,21 +1,20 @@ name: 🏗️ Test Install Scripts -# TODO: re-enable once we are using a release of chia_rs on: push: paths-ignore: - "**.md" branches: - # - "long_lived/**" + - "long_lived/**" - main - "release/**" release: types: [published] -# pull_request: -# paths-ignore: -# - "**.md" -# branches: -# - "**" + pull_request: + paths-ignore: + - "**.md" + branches: + - "**" concurrency: group: ${{ github.event_name == 'pull_request' && format('{0}-{1}', github.workflow_ref, github.event.pull_request.number) || github.run_id }}