Merge pull request #17 from erykoff/datetimemaps #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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: decasu mapping | |
on: | |
push: | |
branches: [ '**' ] | |
pull_request: | |
branches: [ '**' ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Prepare conda | |
run: | | |
export PATH="$CONDA/bin:$PATH" | |
conda config --set always_yes yes --set changeps1 no | |
conda update -q conda | |
conda info -a | |
conda init bash | |
- name: Install dependencies | |
run: | | |
export PATH="$CONDA/bin:$PATH" | |
conda create -q -n testenv python=${{ matrix.python-version }} numpy hpgeom astropy healsparse fitsio esutil LSSTDESC.Coord pyyaml setuptools_scm setuptools_scm_git_archive flake8 pytest pytest-flake8 -c conda-forge | |
source activate testenv | |
pip install --no-deps . | |
- name: Lint with flake8 | |
run: | | |
export PATH="$CONDA/bin:$PATH" | |
source activate testenv | |
# stop the build if it fails flake8 with default setup.cfg | |
flake8 . --count --show-source --statistics | |
- name: Test with pytest | |
run: | | |
export PATH="$CONDA/bin:$PATH" | |
source activate testenv | |
pytest |