Skip to content

Commit

Permalink
Add testing of latest release
Browse files Browse the repository at this point in the history
  • Loading branch information
treiher committed Dec 27, 2023
1 parent 22a940b commit 510a1e9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,3 +215,20 @@ jobs:
- name: Test
run: |
make test
test_latest_release:
name: Latest Release
if: ${{ github.event_name == 'schedule' }}
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install latest PyPI release
run: |
pip install valens
- name: Test
run: |
valens --version

0 comments on commit 510a1e9

Please sign in to comment.