projects
/
pyelftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e7dad6b
)
Change supported Python versions in github actions (#416)
author
Eli Bendersky
<eliben@users.noreply.github.com>
Mon, 13 Jun 2022 13:59:35 +0000
(06:59 -0700)
committer
GitHub
<noreply@github.com>
Mon, 13 Jun 2022 13:59:35 +0000
(06:59 -0700)
.github/workflows/ci.yml
patch
|
blob
|
history
diff --git
a/.github/workflows/ci.yml
b/.github/workflows/ci.yml
index 0237da2cd26ae3e12e35fdc6e8f3036ffa537a0a..2009bf84737ab31362a1c9cb77d2b83904354a62 100644
(file)
--- a/
.github/workflows/ci.yml
+++ b/
.github/workflows/ci.yml
@@
-13,17
+13,16
@@
jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
- python-version: [2.7, 3.
6, 3.7, 3.8
]
+ python-version: [2.7, 3.
7, 3.9
]
os: [ubuntu-latest]
steps:
- - uses: actions/checkout@v
2
+ - uses: actions/checkout@v
3
- name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v
2
+ uses: actions/setup-python@v
4
with:
python-version: ${{ matrix.python-version }}
- name: Test
run: |
python test/all_tests.py
-