Fix small bug in CNF #3563
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
# Test if we can actually install strax by installing | |
name: Installation test | |
on: | |
workflow_dispatch: | |
release: | |
types: [created] | |
pull_request: | |
branches: | |
- master | |
- stable | |
push: | |
branches: | |
- master | |
jobs: | |
install: | |
name: "py${{ matrix.python-version }}" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [ 3.9 ] | |
steps: | |
- name: Setup python | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: sudo apt-get install -y graphviz | |
- name: Install straxen | |
run: pip install . | |
- name: Test import | |
run: python -c "import straxen; straxen.print_versions()" | |
- name: goodbye | |
run: echo goodbye |