Chore: remove root-level test/debug/guide artifacts and CI draft; kee… #220
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: Julia1.10 | |
on: | |
push: | |
branches: | |
- master | |
tags: '*' | |
pull_request: | |
jobs: | |
test: | |
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- '1.10' | |
os: | |
- ubuntu-latest | |
- macOS-latest | |
arch: | |
- x64 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Julia | |
uses: julia-actions/setup-julia@v2 | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
- name: Cache Julia packages | |
uses: julia-actions/cache@v2 | |
- name: Set CI environment variables | |
run: | | |
echo "JULIA_NUM_THREADS=1" >> $GITHUB_ENV | |
echo "MERA_CI_MODE=true" >> $GITHUB_ENV | |
echo "MERA_TEST_TIMEOUT=1800" >> $GITHUB_ENV | |
echo "MERA_DOWNLOAD_RETRIES=3" >> $GITHUB_ENV | |
- name: Build package | |
uses: julia-actions/julia-buildpkg@v1 | |
- name: Run comprehensive test suite | |
uses: julia-actions/julia-runtest@v1 | |
with: | |
coverage: true | |
test_args: '--threads=1' | |
env: | |
JULIA_NUM_THREADS: 1 | |
MERA_CI_MODE: true | |
MERA_TEST_TIMEOUT: 1800 | |
MERA_DOWNLOAD_RETRIES: 3 | |
# Note: Coverage processing and upload is handled only by CI_1.11.yml | |
# to avoid duplicate coverage reports and ensure single source of truth |