Skip to content

Commit

Permalink
refactor: Reformat extensible structure
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasKoehneckeAA committed Apr 9, 2024
1 parent a4a7d4e commit 500f3ef
Show file tree
Hide file tree
Showing 8 changed files with 228 additions and 272 deletions.
26 changes: 12 additions & 14 deletions .github/workflows/daily.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,22 @@
name: CI

on:
#temporary
push:
paths-ignore:
- "trace-viewer/**"
- ".github/workflows/frontend.yml"
workflow_dispatch:
# Scheduled workflows will only run on the default branch.
schedule:
- cron: '0 0 * * *' # runs once a day at midnight in the timezone of your GitHub repository

jobs:

# doctest:
# uses: ./.github/workflows/doctest.yml
# secrets: inherit
lint:
uses: ./.github/workflows/lint.yml
os-support:
uses: ./.github/workflows/sdk-tests.yml
strategy:
matrix:
os: [macos-latest, windows-latest]
with:
runner: "['windows-latest', 'macos-latest']"
secrets: inherit
# test:
# uses: ./.github/workflows/test.yml
# secrets: inherit
# run-notebooks:
# uses: ./.github/workflows/run_notebooks.yml
# secrets: inherit
runner: ${{ matrix.os }}
secrets: inherit
48 changes: 0 additions & 48 deletions .github/workflows/doctest.yml

This file was deleted.

29 changes: 0 additions & 29 deletions .github/workflows/github-actions.yml

This file was deleted.

48 changes: 0 additions & 48 deletions .github/workflows/lint.yml

This file was deleted.

17 changes: 17 additions & 0 deletions .github/workflows/on-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI Pipeline

on:
push:
paths-ignore:
- "trace-viewer/**"
- ".github/workflows/frontend.yml"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
python-tests:
uses: ./.github/workflows/sdk-tests.yml
with:
runner: 'ubuntu-latest'
secrets: inherit
60 changes: 0 additions & 60 deletions .github/workflows/run_notebooks.yml

This file was deleted.

Loading

0 comments on commit 500f3ef

Please sign in to comment.