Update pr-check.yml #23
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
name: GlueTrans PR Check against supported Gluetun versions | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
types: | |
- opened | |
- reopened | |
- edited | |
- synchronize | |
schedule: | |
- cron: "0 6 * * *" | |
workflow_dispatch: | |
jobs: | |
lint-docker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: hadolint/hadolint-action@v3.1.0 | |
with: | |
dockerfile: Dockerfile | |
lint-sh: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ludeeus/action-shellcheck@2.0.0 | |
pr-check-against-supported-gluetun-versions: | |
env: | |
GLUETRANS_VPN_USERNAME: ${{ secrets.GLUETRANS_VPN_USERNAME }} | |
GLUETRANS_VPN_PASSWORD: ${{ secrets.GLUETRANS_VPN_PASSWORD }} | |
GLUETRANS_VPN_REGIONS: ${{ secrets.GLUETRANS_VPN_REGIONS }} | |
GLUETRANS_TRANSMISSION_USERNAME: ${{ secrets.GLUETRANS_TRANSMISSION_USERNAME }} | |
GLUETRANS_TRANSMISSION_PASSWORD: ${{ secrets.GLUETRANS_TRANSMISSION_PASSWORD }} | |
GLUETRANS_SONAR_ORGANIZATION: ${{ secrets.GLUETRANS_SONAR_ORGANIZATION }} | |
GLUETRANS_SONAR_PROJECT_KEY: ${{ secrets.GLUETRANS_SONAR_PROJECT_KEY }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Test against Gluetun v3.36 | |
run: make GLUETUN_VERSION=v3.36 pr-test | |
- name: Test against Gluetun v3.37 | |
run: make GLUETUN_VERSION=v3.37 pr-test | |
- name: Test against Gluetun v3.37.1 | |
run: make GLUETUN_VERSION=v3.37.1 pr-test | |
- name: Test against Gluetun v3.38 | |
run: make GLUETUN_VERSION=v3.38 pr-test | |
- name: Test against Gluetun v3.38.1 | |
run: make GLUETUN_VERSION=v3.38.1 pr-test | |
- name: Test against Gluetun v3.39 | |
run: make GLUETUN_VERSION=v3.39 pr-test | |
- name: Test against Gluetun latest | |
run: make GLUETUN_VERSION=latest pr-test |