Rewrite using Derive and new interface #10
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: Tests | ||
on: | ||
push: | ||
branches: | ||
- 'master' | ||
- 'main' | ||
- 'release-' | ||
tags: '*' | ||
paths-ignore: | ||
- 'docs/**' | ||
pull_request: | ||
workflow_dispatch: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
# Cancel intermediate builds: only if it is a pull request build. | ||
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | ||
jobs: | ||
tests: | ||
name: "Tests" | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: | ||
- 'lts' # minimal supported version | ||
- '1' # latest released Julia version | ||
# group: | ||
# - 'core' | ||
# - 'optional' | ||
os: | ||
- ubuntu-latest | ||
- macOS-latest | ||
- windows-latest | ||
uses: "ITensor/ITensorActions/.github/workflows/Tests.yml@main" | ||
Check failure on line 35 in .github/workflows/Tests.yml GitHub Actions / TestsInvalid workflow file
|
||
with: | ||
group: "${{ matrix.group }}" | ||
julia-version: "${{ matrix.version }}" | ||
os: "${{ matrix.os }}" | ||
localregistry: https://github.com/ITensor/ITensorRegistry.git | ||
secrets: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |