-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
now just need to add a job
- Loading branch information
mike dupont
committed
Oct 11, 2023
1 parent
f8b0a6c
commit 3e99482
Showing
4 changed files
with
49 additions
and
9 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Python package | ||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
jobs: | ||
debug: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: test | ||
env: | ||
GITHUB_PAT: ${{ secrets.PAT }} | ||
GITHUB_1: ${{ secrets.PAT }} | ||
DOCKERTEST: ${{ secrets.DOCKER }} | ||
run: echo pat ${{ secrets.PAT }} docker ${{ secrets.DOCKER }} and test1 ${DOCKERTEST} and $GITHUB_1 | ||
- name: test2 | ||
env: | ||
GITHUB_PAT: ${{ secrets.PAT }} | ||
run: docker-compose -e GIHUB_PAT="${{ secrets.PAT }}" up |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
GITHUB_TOKEN= | ||
GITHUB_PAT= | ||
PAT=this isused | ||
DOCKER= |
This file contains 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