Use the newer GitHub Actions

This commit is contained in:
Michael Mintz 2022-10-14 03:22:57 -04:00
parent 31551878bb
commit a732d4e8ef
1 changed files with 2 additions and 2 deletions

View File

@ -22,9 +22,9 @@ jobs:
python-version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10"] python-version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10"]
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1 uses: actions/setup-python@v3
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install dependencies - name: Install dependencies