-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Miklos Bagi
committed
Nov 3, 2023
1 parent
282e8c0
commit 6b8a0ec
Showing
4 changed files
with
50 additions
and
4 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
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,43 @@ | ||
name: GlueTransPia PR Check v3.35 | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
types: | ||
- opened | ||
- reopened | ||
- edited | ||
- synchronize | ||
workflow_dispatch: | ||
|
||
jobs: | ||
lint-docker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: hadolint/[email protected] | ||
with: | ||
dockerfile: Dockerfile | ||
lint-sh: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: ludeeus/[email protected] | ||
pr-check: | ||
runs-on: ubuntu-latest | ||
env: | ||
GLUETRANSPIA_PIAVPN_USERNAME: ${{ secrets.GLUETRANSPIA_PIAVPN_USERNAME }} | ||
GLUETRANSPIA_PIAVPN_PASSWORD: ${{ secrets.GLUETRANSPIA_PIAVPN_PASSWORD }} | ||
GLUETRANSPIA_PIAVPN_REGIONS: ${{ secrets.GLUETRANSPIA_PIAVPN_REGIONS }} | ||
GLUETRANSPIA_TRANSMISSION_USERNAME: ${{ secrets.GLUETRANSPIA_TRANSMISSION_USERNAME }} | ||
GLUETRANSPIA_TRANSMISSION_PASSWORD: ${{ secrets.GLUETRANSPIA_TRANSMISSION_PASSWORD }} | ||
GLUETRANSPIA_SONAR_ORGANIZATION: ${{ secrets.GLUETRANSPIA_SONAR_ORGANIZATION }} | ||
GLUETRANSPIA_SONAR_PROJECT_KEY: ${{ secrets.GLUETRANSPIA_SONAR_PROJECT_KEY }} | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Build env and run tests | ||
run: make GLUETUN_VERSION=latest pr-test |
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