Bump version: 0.3.13 → 0.3.14 #323
Workflow file for this run
This file contains hidden or 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: 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 |