Test without environment variables #10
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: Check package installation | |
on: | |
push: | |
branches: [ "main" ] | |
jobs: | |
test-package-installation: | |
runs-on: ubuntu-latest | |
container: maurorigo/fftwimg:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Try to install package (for now define FFTW_INC and FFTW_LIB) | |
run: | | |
python3 -m venv JERALDvenv | |
. JERALDvenv/bin/activate | |
pip install . |