Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasHug committed Aug 7, 2024
1 parent f2a8fa0 commit 7687d6a
Showing 1 changed file with 27 additions and 12 deletions.
39 changes: 27 additions & 12 deletions .github/workflows/wheel2.yaml
Original file line number Diff line number Diff line change
@@ -1,23 +1,38 @@
name: Build and test Linux wheels

# on:
# pull_request:
# push:
# branches:
# - nightly
# - main
# - release/*
# tags:
# - v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+
# workflow_dispatch:

# concurrency:
# group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }}-${{ github.ref_type == 'branch' && github.sha }}-${{ github.event_name == 'workflow_dispatch' }}
# cancel-in-progress: true

# permissions:
# id-token: write
# contents: write


on:
pull_request:
push:
branches:
- nightly
- main
- release/*
tags:
- v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+
workflow_dispatch:
branches: [ main ]
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }}-${{ github.ref_type == 'branch' && github.sha }}-${{ github.event_name == 'workflow_dispatch' }}
group: unit-test${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_number || github.ref }}
cancel-in-progress: true

permissions:
id-token: write
contents: write
defaults:
run:
shell: bash -l -eo pipefail {0}


jobs:
# generate-matrix:
Expand Down

0 comments on commit 7687d6a

Please sign in to comment.