add tests and examples of Cₘ × C₂ 2BGA codes #1864
Workflow file for this run
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
name: CI-nightly | |
on: | |
push: | |
branches: [master, main] | |
tags: ["*"] | |
pull_request: | |
env: | |
PYTHON: ~ | |
jobs: | |
test: | |
name: Julia ${{ matrix.version }} - t=${{ matrix.threads }} - jet=${{ matrix.jet }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-latest | |
arch: x64 | |
version: alpha | |
threads: 2 | |
jet: 'false' | |
- os: ubuntu-latest | |
arch: x64 | |
version: '1' | |
threads: 2 | |
jet: 'true' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/install-juliaup@v2 | |
with: | |
channel: ${{ matrix.version }}~${{ matrix.arch }} | |
- uses: julia-actions/cache@v2 | |
- uses: julia-actions/julia-buildpkg@v1 | |
- uses: julia-actions/julia-runtest@v1 | |
env: | |
JULIA_NUM_THREADS: ${{ matrix.threads }} | |
JET_TEST: ${{ matrix.jet }} | |
- uses: julia-actions/julia-processcoverage@v1 | |
- uses: codecov/codecov-action@v4 | |
with: | |
file: lcov.info | |
token: ${{ secrets.CODECOV_TOKEN }} |