diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 00000000..049215db --- /dev/null +++ b/.github/workflows/test.yaml @@ -0,0 +1,18 @@ +name: test +run-name: ${{ github.actor }} test +on: + workflow_dispatch: +env: + DATABASE_URL: ${{ secrets.DATABASE_URL }} +jobs: + test: + runs-on: ubuntu-latest + environment: testing + container: ghcr.io/smnorris/bcfishpass:main + steps: + - name: Check out repository code + uses: actions/checkout@v4 + - name: Run the jobs + run: | + echo "Ref: ${{ github.ref }}" + echo "SHA: ${{ github.sha }}" \ No newline at end of file