Fix the sub-pixel white grid-like image border issue in Chrome. #67
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Runs the testing matrix and code coverage | |
name: Windows | |
on: | |
push: | |
branches: [ "push-jwst-hotfixes", "master" ] | |
pull_request: | |
branches: [ "master" ] | |
# allows running manually | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ windows-latest ] #, windows-latest, macos-latest] | |
python-version: ["3.7"] # TODO: decide how many versions to support | |
runs-on: ${{ matrix.os }} | |
steps: | |
# check out the repo | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -r requirements.txt | |
python -m pip install pytest pytest-cov codecov | |
python -m pip install . | |
- name: Run tests | |
run: pytest --cov=fitsmap -vv |