Skip to content

Commit

Permalink
Test image
Browse files Browse the repository at this point in the history
  • Loading branch information
hauntsaninja committed Aug 3, 2024
1 parent fe0a4ae commit 7e533a0
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,22 @@ on:
push:
branches:
- master

permissions:
contents: read
packages: write

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: docker/login-action@v2
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
- uses: docker/build-push-action@v4

- uses: docker/build-push-action@v6
with:
push: true
tags: |
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Tests

on: [push, pull_request, workflow_dispatch]

permissions:
contents: read

jobs:
mitmtest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: bash tests/mitmtest.sh

0 comments on commit 7e533a0

Please sign in to comment.