Bugfix: StackOverflowError
for fields of type DataType
(#73)
#229
This file contains 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
# validates that @generated functions are used properly (not defined before any | |
# functions they call into) | |
name: generated-CI | |
on: | |
push: | |
branches: | |
- main | |
tags: '*' | |
pull_request: | |
concurrency: | |
# Skip intermediate builds: always. | |
# Cancel intermediate builds: only if it is a pull request build. | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
jobs: | |
test: | |
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- '1.6' # LTS | |
os: | |
- ubuntu-latest | |
arch: | |
- x64 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
- uses: julia-actions/julia-buildpkg@v1 | |
- name: "Run `dev StableHashTraits`" | |
shell: julia --color=yes --project {0} | |
run: | | |
using Pkg | |
Pkg.activate("test/ValidateGenerated") | |
Pkg.develop(PackageSpec(; path=".")) | |
Pkg.status() | |
- uses: julia-actions/cache@v2 | |
with: | |
cache-compiled: "true" | |
- uses: julia-actions/julia-runtest@main | |
with: | |
compiled_modules: 'no' | |
project: test/ValidateGenerated |