Skip to content

Commit

Permalink
Merge pull request #8 from rocky/CI-tweaking
Browse files Browse the repository at this point in the history
Update
  • Loading branch information
rocky authored Nov 15, 2024
2 parents 745ce0e + 5cff470 commit 57c9702
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/osx.yml → .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: uncompyle6 (osx)
name: control_flow (macos)

on:
push:
Expand All @@ -12,11 +12,11 @@ jobs:
strategy:
matrix:
os: [macOS]
python-version: [3.8, 3.9]
python-version: ['3.8', '3.9']
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: uncompyle6 (ubuntu)
name: control_flow (ubuntu)

on:
push:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ on:

jobs:
build:
runs-on: macos-latest
runs-on: windows-latest
strategy:
matrix:
os: [windows]
python-version: [3.8, 3.9]
python-version: ['3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -26,6 +26,6 @@ jobs:
# Not sure why "pip install -e" doesn't work above
# pip install click spark-parser xdis
pip install -r requirements-dev.txt
- name: Test uncompyle6
- name: Test control-flow
run: |
make check

0 comments on commit 57c9702

Please sign in to comment.