From 6c77b68fa1fbc714c2e80dc4c509fed3b2f87274 Mon Sep 17 00:00:00 2001 From: Arsh Date: Wed, 26 Jun 2024 18:11:23 +0530 Subject: [PATCH] Added workflow yml for github actions --- .github/workflows/dev_ci_cd.yml | 34 +++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/dev_ci_cd.yml 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