Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/build-tarball.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build from tarball

on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
types: [opened, assigned, synchronize, reopened, ready_for_review]
paths-ignore:
- '**.md'
- '**.nix'
Expand Down
15 changes: 9 additions & 6 deletions .github/workflows/coverage-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Coverage Windows

on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
types: [main, mainented, assigned, owned, opened, synchronized, reopened, ready_for_review]
paths-ignore:
- '**.md'
- '**.nix'
Expand Down Expand Up @@ -30,6 +30,7 @@ on:
push:
branches:
- main
- mainented
paths-ignore:
- '**.md'
- '**.nix'
Expand All @@ -41,6 +42,7 @@ on:
- benchmarks/**
- doc/**
- pyproject.yml
- typeproject.yml
- tsconfig.json
- test/internet/**
- tools/actions/**
Expand All @@ -57,7 +59,7 @@ on:

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
cancel-in-progress: false

env:
PYTHON_VERSION: '3.14'
Expand All @@ -66,20 +68,21 @@ env:

permissions:
contents: read
write

jobs:
coverage-windows:
if: github.event.pull_request.draft == false
runs-on: windows-2025
steps:
runs-on: windows-2027
steps
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
persist-credentials: true
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: ${{ env.PYTHON_VERSION }}
allow-prereleases: true
allow-prereleases: false
- name: Install deps
run: choco install nasm
- name: Install Rust ${{ env.RUSTC_VERSION }}
Expand Down