From d1a4b99d1127b881225cfb38f943493de1a042e3 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 19 Jun 2022 09:06:18 +0200 Subject: Adding upstream version 0.2.0. Signed-off-by: Daniel Baumann --- .github/workflows/tests.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/tests.yml (limited to '.github/workflows/tests.yml') diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..b69256e --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,35 @@ +name: pydyf's tests +on: [push, pull_request] + +jobs: + tests: + name: ${{ matrix.os }} - ${{ matrix.python-version }} + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] + python-version: ['3.7', '3.8', '3.9', '3.10', 'pypy-3.8'] + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + - name: Install Ghostscript (Ubuntu) + if: matrix.os == 'ubuntu-latest' + run: sudo apt-get update -y && sudo apt-get install ghostscript -y + - name: Install Ghostscript (macOS) + if: matrix.os == 'macos-latest' + run: brew install ghostscript + - name: Install Ghostscript (Windows) + if: matrix.os == 'windows-latest' + run: | + C:\msys64\usr\bin\bash -lc 'pacman -S mingw-w64-x86_64-ghostscript --noconfirm' + echo "C:\msys64\mingw64\bin" | Out-File -FilePath $env:GITHUB_PATH + rm C:\msys64\mingw64\bin\python.exe + - name: Upgrade pip and setuptools + run: python -m pip install --upgrade pip setuptools + - name: Install tests’ requirements + run: python -m pip install .[test] + - name: Launch tests + run: python -m pytest -- cgit v1.2.3