Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
junkmd committed May 28, 2024
1 parent f373411 commit 5ac1e94
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions .github/workflows/autotest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, windows-2019]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
architecture: ['x86', 'x64']
# os: [windows-latest, windows-2019]
# python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
# architecture: ['x86', 'x64']
os: [windows-latest]
python-version: ['3.7']
architecture: ['x64']
steps:
- uses: actions/checkout@v3
- name: Set up Python
Expand All @@ -35,6 +38,23 @@ jobs:
- name: unittest comtypes
run: |
python -m unittest discover -v -s ./comtypes/test -t comtypes\test
# - name: Archive gen directory
# uses: actions/upload-artifact@v4
# with:
# name: gen-dir-${{ matrix.python-version }}-${{ matrix.architecture }}-${{ matrix.os }}
# path: comtypes/gen
- name: Zip
run: |
python -m zipfile -c gen.zip comtypes/gen/
- name: Commit
uses: stefanzweifel/git-auto-commit-action@v4
with:
branch: ${{ github.head_ref }}
file_pattern: "gen.zip"
commit_message: add `gen.zip`
commit_user_name: github-actions[bot]
commit_user_email: 41898282+github-actions[bot]@users.noreply.github.com
commit_author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- name: Unregister the OutProc COM server
run: |
cd source/CppTestSrv
Expand Down

0 comments on commit 5ac1e94

Please sign in to comment.