Skip to content

Commit

Permalink
Add action for testing released code (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimc101 authored Nov 22, 2023
1 parent 85677d4 commit 2208d2e
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/pylag-package-conda-linux-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Release
on:
release:
types: [ released ]
jobs:
build-linux:
name: Miniconda ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest"]
python-version: ["3.11"]
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: "pylag_test"
auto-activate-base: false
channels: conda-forge,JimClark
auto-update-conda: true
environment-file: environment.yml
python-version: ${{ matrix.python-version }}
- name: Install package
shell: bash -l {0}
run: |
conda install -c JimClark pylag
- name: Show conda env
shell: bash -l {0}
run: |
conda info
conda list
# - name: Lint
# shell: bash -l {0}
# run: |
# conda install flake8
# python -m flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# python -m flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Run pytest
shell: bash -l {0}
run: |
conda install pytest
pytest

0 comments on commit 2208d2e

Please sign in to comment.