fix missing icon #24
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
# things not included | |
# language | |
# notifications - no email notifications set up | |
name: pytest | |
on: | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
test_suite: | |
name: Pytest on ${{ matrix.python-version }}, ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] | |
python-version: [3.6, 3.7, 3.8] | |
timeout-minutes: 10 | |
defaults: | |
run: | |
shell: bash -l {0} | |
env: | |
PYTHON_VERSION: ${{ matrix.python-version }} | |
CHANS_DEV: "-c pyviz/label/dev -c conda-forge" | |
CHANS: "-c pyviz -c conda-forge" | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: "100" | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
miniconda-version: "latest" | |
- name: Fetch | |
run: git fetch --prune --tags | |
- name: conda setup | |
run: | | |
conda config --set always_yes True | |
conda install -c pyviz "pyctdev>=0.5" | |
doit ecosystem_setup | |
doit env_create ${{ env.CHANS_DEV}} --python=${{ matrix.python-version }} | |
- name: doit develop_install | |
run: | | |
eval "$(conda shell.bash hook)" | |
conda activate test-environment | |
doit list | |
doit develop_install ${{ env.CHANS_DEV }} -o tests | |
- name: doit env_capture | |
run: | | |
eval "$(conda shell.bash hook)" | |
conda activate test-environment | |
doit env_capture | |
- name: doit test_lint | |
run: | | |
eval "$(conda shell.bash hook)" | |
conda activate test-environment | |
doit test_lint |