Skip to content

Added CI module

Added CI module #1

Workflow file for this run

name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v2
with:

Check failure on line 17 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Python package

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 17, Col: 14): Unexpected value '' .github/workflows/ci.yml (Line: 18, Col: 9): Unexpected value 'auto-update-conda'
auto-update-conda: true
python-version: ${{ matrix.python-version }}
- name: Install airss
shell: bash -el {0}
run: conda install -c conda-forge airss
- name: Install dependencies
shell: bash -el {0}
run: |
python -m pip install --upgrade pip
pip install ".[testing]"
- name: Test with pytest
shell: bash -el {0}
run: |
pytest