summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Clauss <cclauss@me.com>2022-03-10 06:23:35 +0100
committerGitHub <noreply@github.com>2022-03-10 06:23:35 +0100
commit6bb8a42a4fa31009ccaf41f6c9e4a7ac3eedd25b (patch)
treeb461ae4e3299d3e34e07a0ad8a506babc5e4a326
parent92e4cbd5d5f7cfbb18cc6e379324dd49eba516fb (diff)
downloadpycurl-6bb8a42a4fa31009ccaf41f6c9e4a7ac3eedd25b.tar.gz
Upgrade actions/checkout and actions/setup-python
-rw-r--r--.github/workflows/ci-macos.yml10
1 files changed, 4 insertions, 6 deletions
diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml
index 02a67d6..4a09619 100644
--- a/.github/workflows/ci-macos.yml
+++ b/.github/workflows/ci-macos.yml
@@ -22,12 +22,12 @@ jobs:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Select Xcode version
# Note: had to select a Version of Xcode that has macOS 11.x SDK
run: sudo xcode-select -s '/Applications/Xcode_13.0.app/Contents/Developer'
- name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
@@ -36,8 +36,6 @@ jobs:
pip install flake8 pytest
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
- name: Build
- run: |
- make
+ run: make
- name: Test with pytest
- run: |
- make test
+ run: make test