build(deps): bump aiohttp from 3.9.0 to 3.9.2 #8
Workflow file for this run
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
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Test | |
on: | |
push: | |
branches: [main, master, dev] | |
paths: | |
- '**.py' | |
- '**.yml' | |
- '**.yaml' | |
pull_request: | |
branches: [ main, master ] | |
jobs: | |
Test: | |
runs-on: ${{ matrix.os }}-latest | |
strategy: | |
matrix: | |
os: ["ubuntu", "macos", "windows"] | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- name: Checkout package repository | |
uses: actions/checkout@v2 | |
- name: Install conda environment with micromamba | |
uses: mamba-org/provision-with-micromamba@main | |
with: | |
environment-file: environment.yaml | |
environment-name: test | |
micromamba-version: latest | |
- name: Building & Testing conda package | |
run: | | |
micromamba install -y python pytest | |
python -m pytest tests |