Skip to content

Commit 8fe2a5c

Browse files
committed
Use specific Ubuntu versions
1 parent b3b21f6 commit 8fe2a5c

File tree

2 files changed

+49
-2
lines changed

2 files changed

+49
-2
lines changed

.github/workflows/build.yml .github/workflows/build-20.04.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ on:
1313
jobs:
1414
build:
1515
timeout-minutes: 10
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-20.04
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
20+
python-version: ["3.6", "3.7"]
2121

2222
steps:
2323
- uses: actions/[email protected]

.github/workflows/build-24.04.yml

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3+
4+
name: CI Build
5+
6+
on:
7+
push:
8+
branches: '**'
9+
tags: '**'
10+
pull_request:
11+
branches: '**'
12+
13+
jobs:
14+
build:
15+
timeout-minutes: 10
16+
runs-on: ubuntu-24.04
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14-dev"]
21+
22+
steps:
23+
- uses: actions/[email protected]
24+
- name: Set up Python ${{ matrix.python-version }}
25+
uses: actions/[email protected]
26+
with:
27+
python-version: ${{ matrix.python-version }}
28+
- name: Install dependencies
29+
run: |
30+
python -m pip install --upgrade pip
31+
python -m pip install flake8 pytest
32+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
33+
- name: Lint with flake8
34+
run: |
35+
# stop the build if there are Python syntax errors or undefined names
36+
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
37+
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
38+
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
39+
- name: Test
40+
run: |
41+
./run_tests.sh
42+
- name: Coveralls
43+
env:
44+
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
45+
run: |
46+
pip install coveralls
47+
coveralls

0 commit comments

Comments
 (0)