1
0
mirror of https://github.com/httpie/cli.git synced 2025-08-10 22:42:05 +02:00

CI: Run tests on Python 3.10 RC1 (#1121)

This commit is contained in:
Mickaël Schoentgen
2021-08-06 13:11:21 +02:00
committed by GitHub
parent 6bd6648545
commit c50e287c57
2 changed files with 14 additions and 5 deletions

9
.github/dependabot.yml vendored Normal file
View File

@@ -0,0 +1,9 @@
version: 2
updates:
# GitHub Actions
- package-ecosystem: github-actions
directory: /
schedule:
interval: daily
assignees:
- BoboTiG

View File

@@ -5,8 +5,8 @@ jobs:
# Run coverage and extra tests only once
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
- run: python -m pip install --upgrade pip setuptools wheel
@@ -24,10 +24,10 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.6, 3.7, 3.8, 3.9, "3.10.0-rc.1"]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install --upgrade pip setuptools wheel