Skip to content

Commit

Permalink
TEST
Browse files Browse the repository at this point in the history
  • Loading branch information
crosenth committed Jul 28, 2024
1 parent 8feddba commit 1016ca8
Showing 1 changed file with 1 addition and 33 deletions.
34 changes: 1 addition & 33 deletions .github/workflows/test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,44 +18,19 @@ env:
jobs:
unittests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- name: Checkout repository
uses: actions/checkout@v3

- uses: actions/checkout@v4
- run: |
python3 -m deenurp.test
tests/run.sh
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Install package and dependencies
run: |
python -m pip install --upgrade pip wheel
python -m pip install .
- name: Run tests
run: python -m unittest discover
tests/run.sh
deploy:
if: github.ref_type == 'tag'
needs: [unittests]
permissions:
contents: read
packages: write
id-token: write
runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

Expand All @@ -78,13 +53,6 @@ jobs:
with:
cache-from: type=gha
cache-to: type=gha,mode=max
context: .
labels: ${{ steps.meta.outputs.labels }}
push: true
tags: ${{ steps.meta.outputs.tags }}

- name: Sign the published Docker image
env:
DIGEST: ${{ steps.build-and-push.outputs.digest }}
TAGS: ${{ steps.meta.outputs.tags }}
run: echo "${TAGS}" | xargs -I {} cosign sign --yes {}@${DIGEST}

0 comments on commit 1016ca8

Please sign in to comment.