Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
Update groups

Update action

Update action

Update actions

Update actions

Update CI
  • Loading branch information
lkdvos committed Dec 8, 2024
1 parent 3520c0f commit 59e22c5
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 78 deletions.
78 changes: 0 additions & 78 deletions .github/workflows/CI.yml

This file was deleted.

44 changes: 44 additions & 0 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
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:
- '1.8' # minimal supported version
- '1' # latest released Julia version
group:
- states
- operators
- algorithms
- other
os:
- ubuntu-latest
- macOS-latest
- windows-latest
uses: "QuantumKitHub/QuantumKitHubActions/.github/workflows/Tests.yml@main"
with:
group: "${{ matrix.group }}"
nthreads: 4
julia-version: "${{ matrix.version }}"
os: "${{ matrix.os }}"
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 59e22c5

Please sign in to comment.