diff --git a/.github/workflows/dev_ci_cd.yml b/.github/workflows/dev_ci_cd.yml new file mode 100644 index 0000000..777dcc6 --- /dev/null +++ b/.github/workflows/dev_ci_cd.yml @@ -0,0 +1,34 @@ +name: Dev CIF API CI/CD + +on: + push: + branches: [ "bugfix/pytest" ] + +permissions: + contents: read +jobs: + build: + runs-on: ubuntu-latest + strategy: + max-parallel: 4 + matrix: + python-version: [3.10] + + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v3 + with: + python-version: ${{ matrix.python-version }} + - name: Install Dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + # - name: Install Linux dependencies + # run: | + # sudo apt update + # sudo apt install libcurl4 libcurl4-openssl-dev + # sudo apt install binutils libproj-dev gdal-bin libgdal-dev + - name: Run Tests + run: | + pytest tests \ No newline at end of file