Skip to content

Commit

Permalink
Update python-package-conda.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Sovanndara1987 authored Dec 20, 2024
1 parent daf2f4f commit 631a772
Showing 1 changed file with 26 additions and 9 deletions.
35 changes: 26 additions & 9 deletions .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Python Package using Conda

on: [push]
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build-linux:
Expand All @@ -10,24 +16,35 @@ jobs:

steps:
- uses: actions/checkout@v4

- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH

- name: Setup Conda
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: base
auto-activate-base: true

- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.conda/envs/base
key: ${{ runner.os }}-conda-${{ hashFiles('environment.yml') }}
restore-keys: |
${{ runner.os }}-conda-
- name: Install dependencies
run: |
conda env update --file environment.yml --name base
run: conda env update --file environment.yml --name base

- name: Lint with flake8
run: |
conda install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
conda install pytest
Expand Down

0 comments on commit 631a772

Please sign in to comment.