mirror of
https://github.com/drewcassidy/quicktex.git
synced 2024-09-13 06:37:34 +00:00
cross-platform testing
why not?
This commit is contained in:
parent
b7b5c5f843
commit
497203e76a
9
.github/workflows/python-package.yml
vendored
9
.github/workflows/python-package.yml
vendored
@ -11,10 +11,11 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: Ubuntu-20.04
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: [ 3.7, 3.8, 3.9 ]
|
python-version: [ 3.7, 3.8, 3.9 ]
|
||||||
|
os: [ macos-latest, windows-latest, Ubuntu-20.04]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -29,7 +30,11 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
|
|
||||||
- name: Set up Linux
|
- name: Set up Windows environment
|
||||||
|
if: runner.os == 'Windows'
|
||||||
|
uses: ilammy/msvc-dev-cmd@v1
|
||||||
|
|
||||||
|
- name: Set up Linux environment
|
||||||
if: runner.os == 'Linux'
|
if: runner.os == 'Linux'
|
||||||
run: |
|
run: |
|
||||||
echo "CC=gcc-10" >> $GITHUB_ENV
|
echo "CC=gcc-10" >> $GITHUB_ENV
|
||||||
|
Loading…
Reference in New Issue
Block a user