Update CI workflow to use custom runner and container
All checks were successful
CI / lint (pull_request) Successful in 3m11s
CI / test (3.10) (pull_request) Successful in 27s
CI / test (3.11) (pull_request) Successful in 36s
CI / test (3.12) (pull_request) Successful in 36s
CI / test (3.13) (pull_request) Successful in 37s
CI / ci-success (pull_request) Successful in 1s

- Changed the runner from `ubuntu-latest` to `rassbery` for the `ci-success` job.
- Specified a custom container `catthehacker/ubuntu:act-22.04` for the job environment, enhancing compatibility and consistency in the CI process.
This commit is contained in:
IluaAir
2026-07-19 10:24:25 +03:00
parent 27d8931dee
commit 9575450811

View File

@@ -42,7 +42,8 @@ jobs:
ci-success: ci-success:
if: always() if: always()
needs: [lint, test] needs: [lint, test]
runs-on: ubuntu-latest runs-on: rassbery
container: catthehacker/ubuntu:act-22.04
steps: steps:
- name: Verify all jobs succeeded - name: Verify all jobs succeeded
if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }} if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}