We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2f4d79 commit 8575ab8Copy full SHA for 8575ab8
1 file changed
.github/workflows/ci.yaml
@@ -3,7 +3,7 @@ name: CI
3
on:
4
pull_request:
5
push:
6
- branches: [main]
+ branches: [main, natty/build]
7
tags: [v*.*.*]
8
9
jobs:
@@ -15,7 +15,7 @@ jobs:
15
image: ${{ matrix.container-image }}
16
env:
17
PYTHON: ${{ matrix.python-version }}
18
- runs-on: [ubuntu-20.04]
+ runs-on: ubuntu-latest
19
strategy:
20
# Finish the other builds even if one fails.
21
fail-fast: false
@@ -24,6 +24,8 @@ jobs:
24
include:
25
- python-version: '2.7'
26
container-image: python:2.7
27
+ - python-version: '3.7'
28
+ container-image: python:3.7
29
steps:
30
- uses: actions/checkout@v4
31
with:
@@ -75,7 +77,7 @@ jobs:
75
77
runs-on: [ubuntu-latest]
76
78
permissions:
79
id-token: write
- if: github.event_name != 'pull_request'
80
+ if: false
81
82
- uses: actions/download-artifact@v4
83
0 commit comments