Skip Core.apply_type and NamedTuple constructors in codegen #19
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: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| test: | |
| name: Julia ${{ matrix.version }} - ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: | |
| - '1.12' | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: ${{ matrix.version }} | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - uses: julia-actions/cache@v2 | |
| - name: Install dependencies | |
| run: | | |
| julia --project=. -e ' | |
| using Pkg | |
| Pkg.instantiate() | |
| ' | |
| - name: Run tests | |
| run: | | |
| julia --project=. test/runtests.jl |