Skip to content

Merge pull request #150 from agstrike/update #68

Merge pull request #150 from agstrike/update

Merge pull request #150 from agstrike/update #68

Workflow file for this run

name: Test and Lint
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.11, 3.12]
tox: [django, flake, codecov]
exclude:
- python: 3.11
tox: flake
- python: 3.11
tox: codecov
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Test
env:
CODECOV_TOKEN: ${{ secrets.codecov_token }}
run: |
tox -e ${{ matrix.tox }}
docker:
runs-on: ubuntu-latest
needs: test
if: github.ref == 'refs/heads/master'
steps:
- name: Check Out Repo
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: simhnna
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
id: docker_build
uses: docker/build-push-action@v6
with:
context: ./
file: ./Dockerfile
push: true
tags: simhnna/silverstrike:dev
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}