Route FlatNode's span→view helpers through the span-native path #179
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: Downstream | |
| on: | |
| push: | |
| branches: [main] | |
| tags: [v*] | |
| pull_request: | |
| jobs: | |
| test: | |
| name: ${{ matrix.package }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| package: | |
| - "SatelliteToolboxOrbitDataMessages" | |
| - "XLSX" | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: julia-actions/setup-julia@v3 | |
| with: | |
| version: 1 | |
| arch: x64 | |
| show-versioninfo: true | |
| - uses: julia-actions/julia-buildpkg@latest | |
| - name: Load this and run the downstream tests | |
| shell: julia --color=yes {0} | |
| run: | | |
| # force it to use this PR's version of the package | |
| ENV["JULIA_PKG_DEVDIR"] = mktempdir() | |
| # Don't waste time precompiling before the test | |
| ENV["JULIA_PKG_PRECOMPILE_AUTO"] = "0" | |
| using Pkg | |
| Pkg.Registry.update() | |
| Pkg.activate(;temp=true) | |
| Pkg.develop([ | |
| PackageSpec(path="."), | |
| PackageSpec(name="${{ matrix.package }}"), | |
| ]) | |
| Pkg.update() | |
| Pkg.test("${{ matrix.package }}") |