Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
matrix:
os: [ubuntu-22.04, ubuntu-24.04]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install System Python
run: |
sudo apt install python3-dev python3-pip python3-venv
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
os: [windows-latest, macos-latest, ubuntu-latest]
steps:
- name: Checkout project
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Install Python
uses: actions/setup-python@v5
with:
Expand All @@ -73,7 +73,7 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
Expand All @@ -96,7 +96,7 @@ jobs:
steps:
- name: Install System Python and Git
run: yum install -y python3-devel python3-pip python3 git
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install Testing Requirements
run: python3 -m pip install nox
- name: Run Tests
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
python:p
python-pip:p
update: true
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Run tests
run: |
python -m venv .venv
Expand All @@ -158,7 +158,7 @@ jobs:
apk add python3 python3-dev py3-pip py3-nox py3-attrs git
apk add bash gpg curl
- name: Download Source
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Run Tests
run: |
nox -e tests
Expand All @@ -176,7 +176,7 @@ jobs:
run: |
brew install python git
- name: Download Source
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Build venv
run: |
python3 -m venv .venv
Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:
run: |
pacman --noconfirm -Sy python python-pip git
- name: Download Source
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Create and activate environment
run: |
python -m venv .venv
Expand Down
Loading