Skip to content

Commit

Permalink
run CI on Ubuntu latest
Browse files Browse the repository at this point in the history
  • Loading branch information
omarryhan committed May 22, 2024
1 parent f483d81 commit 8582d1e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ on:
# - cron: '0 0 * * *' # Once per day at midnight
jobs:
test:
runs-on: macos-latest
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10"]
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -28,10 +28,10 @@ jobs:
- name: Run tests
run: PY_VERSION=${{ matrix.python-version }} && tox -e py${PY_VERSION//.}
lint:
runs-on: macos-latest
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10"]
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down

0 comments on commit 8582d1e

Please sign in to comment.