Skip to content

Bump version: 0.3.16 → 0.3.17 #332

Bump version: 0.3.16 → 0.3.17

Bump version: 0.3.16 → 0.3.17 #332

Workflow file for this run

name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: python -m pip install -r requirements.txt
- name: Lint
run: python -m ruff check --no-cache .
- name: Install eodash catalog itself for tests
run: python -m pip install .
- name: Test
run: cd tests && python -m pytest -p no:cacheprovider
- if: github.ref == 'refs/heads/main'
name: Build and push latest docker image
run: |
IMAGE_ID=ghcr.io/${{ github.repository }}
VERSION=${{ github.ref_name }}
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
docker build -t $IMAGE_ID:latest .
docker push $IMAGE_ID:latest