This repository has been archived by the owner on Dec 17, 2024. It is now read-only.
chore(deps): bump cryptography from 42.0.4 to 43.0.3 #116
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
name: ubuntu pytest | |
on: [push, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -el {0} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: conda-incubator/setup-miniconda@v3 | |
with: | |
miniconda-version: latest | |
auto-update-conda: false | |
activate-environment: rctGCS | |
environment-file: conda-linux-64-lock.yml | |
- name: Install dependencies | |
run: | | |
conda activate rctGCS | |
python -m poetry install | |
- name: Execute tests | |
run: | | |
conda activate rctGCS | |
python -m pytest tests |