Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: CI
on:
push:
branches: [main]
tags: ["*"]
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ (github.ref != 'refs/heads/main') || github.run_number }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}

permissions:
actions: write
contents: read

jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version: ['lts', '1']
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v3
with:
version: ${{ matrix.version }}
- uses: julia-actions/cache@v3
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v6
with:
files: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
1 change: 1 addition & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
StochasticAD = "e4facb34-4f7e-4bec-b153-e122c37934ac"

[compat]
julia = "1.10"
Distributions = "0.25.113"
Graphs = "1.9.0"
StochasticAD = "0.1.26"
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# QuantumNetworkRecipes

[![CI](https://github.com/GuusAvis/QuantumNetworkRecipes.jl/actions/workflows/ci.yml/badge.svg)](https://github.com/GuusAvis/QuantumNetworkRecipes.jl/actions/workflows/ci.yml)
[![Coverage](https://codecov.io/gh/GuusAvis/QuantumNetworkRecipes.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/GuusAvis/QuantumNetworkRecipes.jl)

QuantumNetworkRecipes can be used to specify the characteristics of a quantum network in the form of a "recipe".
Each recipe needs to be self contained and must fully specify both the physical characteristics of the network and any protocols executed in the network, leaving no room for ambiguity.
Recipes then provide a common language for computer programs to analyze and share information about quantum networks.
Expand Down
Loading