We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9efce55 commit 5f97fa1Copy full SHA for 5f97fa1
.github/workflows/ci.yaml
@@ -3,7 +3,7 @@ name: CI
3
on:
4
pull_request:
5
push:
6
- branches: [main, signal/gh]
+ branches: [main]
7
tags: [v*.*.*]
8
9
jobs:
@@ -25,9 +25,11 @@ jobs:
25
- python-version: '2.7'
26
container-image: python:2.7
27
steps:
28
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
29
with:
30
- fetch-depth: 0 # fetch all history for setuptools_scm to be able to read tags
+ # Fetch all the history so setuptools_scm can version relative to the
31
+ # most recent version tag.
32
+ fetch-depth: 0
33
34
- uses: actions/setup-python@v4
35
# Only set up Python if we're running directly on an agent. If we're in
0 commit comments