Fix some JET errors around matching methods for send_connection_hdr(...) and send_msg_now(...) (underlying problem: the Worker(...) constructors might not always return a Worker)
#304
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| pull_request: | |
| # branches: | |
| # - 'master' | |
| # - 'release-*' | |
| push: | |
| branches: | |
| - 'master' | |
| - 'release-*' | |
| tags: '*' | |
| concurrency: | |
| # Skip intermediate builds: all builds except for builds on the `main` or `release-*` branches | |
| # Cancel intermediate builds: only pull request builds | |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ github.ref != 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release-') || github.run_number }} | |
| cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
| jobs: | |
| test: | |
| name: julia -t${{ matrix.threads}} - ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 30 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| threads: | |
| # - '1' | |
| - '4,4' | |
| version: [nightly] | |
| os: [ubuntu-latest, windows-latest, macOS-latest] | |
| arch: [x64, x86, aarch64] | |
| exclude: | |
| - os: ubuntu-latest | |
| arch: aarch64 | |
| - os: windows-latest | |
| arch: aarch64 | |
| - os: macOS-latest | |
| arch: x64 | |
| - os: macOS-latest | |
| arch: x86 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: ${{ matrix.version }} | |
| arch: ${{ matrix.arch }} | |
| - uses: julia-actions/cache@v2 | |
| - uses: julia-actions/julia-runtest@v1 | |
| env: | |
| JULIA_DISTRIBUTED_TESTING_STANDALONE: 1 | |
| JULIA_NUM_THREADS: '${{ matrix.threads}}' | |
| - uses: julia-actions/julia-processcoverage@v1 | |
| - uses: codecov/codecov-action@v5 | |
| with: | |
| files: lcov.info | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: julia-actions/setup-julia@latest | |
| with: | |
| # version: '1.6' | |
| version: 'nightly' | |
| - name: Generate docs | |
| run: | | |
| julia --color=yes -e 'write("Project.toml", replace(read("Project.toml", String), r"uuid = .*?\n" =>"uuid = \"47e2e46d-f89d-539d-b4ee-838fcccc9c8e\"\n"));' | |
| julia --project --color=yes -e 'using Pkg; Pkg.activate("docs"); Pkg.instantiate(); Pkg.develop(PackageSpec(path = pwd()))' | |
| julia --project=docs --color=yes docs/make.jl pdf | |
| env: | |
| DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} |