Skip to content
Merged
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
39 changes: 39 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: CI

on:
pull_request:
workflow_dispatch:
push:
tags:
- "v*"

concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: write
checks: write
pull-requests: write

jobs:
lint-cpp:
uses: ./.github/workflows/ci-lint.yml

build-test-docs:
uses: ./.github/workflows/ci-build-test-docs.yml

coverage:
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
uses: ./.github/workflows/ci-coverage.yml

package:
needs: build-test-docs
uses: ./.github/workflows/ci-package.yml

release:
needs: package
if: startsWith(github.ref, 'refs/tags/v')
uses: ./.github/workflows/ci-release.yml
secrets:
PAGES_DEPLOY_TOKEN: ${{ secrets.PAGES_DEPLOY_TOKEN }}
69 changes: 0 additions & 69 deletions examples/time_example.cpp

This file was deleted.

124 changes: 0 additions & 124 deletions examples/timescales.cpp

This file was deleted.

Loading