This repository has been archived by the owner on Jul 16, 2024. It is now read-only.
update dependencies for learning #12
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: Test environment | |
on: | |
pull_request: | |
jobs: | |
test-run: | |
name: Build environment | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Build Conda environment | |
run: conda env create -f ./environment.yml |