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
9 changes: 3 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ on:
required: true
default: master

push:
branches:
- master

pull_request:
branches:
- master
Expand All @@ -29,8 +25,9 @@ concurrency:
jobs:
typecheck:
if:
${{ github.event_name == 'workflow_dispatch' || (github.event_name ==
'pull_request' && github.event.pull_request.draft == false) }}
${{ github.event_name == 'workflow_dispatch' || github.event_name ==
'push' || (github.event_name == 'pull_request' &&
github.event.pull_request.draft == false) }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Profile Library Typechecking
name: Clean build and profiling of library

on:
push:
Expand All @@ -10,7 +10,7 @@ concurrency:
cancel-in-progress: false

jobs:
typecheck-performance:
typecheck-clean:
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down
Loading