-
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
1 parent
e493a3e
commit 580cb8f
Showing
5 changed files
with
69 additions
and
40 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 |
---|---|---|
|
@@ -93,15 +93,15 @@ jobs: | |
env: | ||
WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} | ||
|
||
- name: Ansible Lint -- Install Template Requirements | ||
run: | | ||
source ./template/.github/scripts/requirements.sh | ||
- name: Ansible Lint -- Set up Python ${{ env.PYTHON_VERSION }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
|
||
- name: Ansible Lint -- Install Template Requirements | ||
run: | | ||
source ./template/.github/scripts/requirements.sh | ||
- name: Ansible Lint -- Initialize Cache Locations | ||
run: | | ||
mkdir -p ~/.cache/pypoetry/virtualenvs | ||
|
@@ -119,7 +119,7 @@ jobs: | |
uses: actions/cache@v3 | ||
with: | ||
key: poetry-${{ hashFiles('./template/{{cookiecutter.profile_slug}}/pyproject.toml') }}-${{ runner.os }}-${{ env.CACHE_TTL }} | ||
path: ~/.cache/pypoetry/virtualenvs/ | ||
path: ~/.cache/pypoetry/virtualenvs | ||
|
||
- name: Ansible Lint -- Render Template | ||
run: | | ||
|
@@ -278,15 +278,15 @@ jobs: | |
env: | ||
WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} | ||
|
||
- name: Documentation Test -- Install Template Requirements | ||
run: | | ||
source ./template/.github/scripts/requirements.sh | ||
- name: Documentation Test -- Set up Python ${{ env.PYTHON_VERSION }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
|
||
- name: Documentation Test -- Install Template Requirements | ||
run: | | ||
source ./template/.github/scripts/requirements.sh | ||
- name: Documentation Test -- Render Template | ||
run: | | ||
source ./template/.github/scripts/template.sh | ||
|
@@ -342,6 +342,11 @@ jobs: | |
env: | ||
WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} | ||
|
||
- name: Pre-Commit Test -- Set up Python ${{ env.PYTHON_VERSION }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
|
||
- name: Pre-Commit Test -- Install Template Requirements | ||
run: | | ||
source ./template/.github/scripts/requirements.sh | ||
|
@@ -350,11 +355,6 @@ jobs: | |
run: | | ||
sudo apt-get install -y golang-github-pelletier-go-toml | ||
- name: Pre-Commit Test -- Set up Python ${{ env.PYTHON_VERSION }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
|
||
- name: Pre-Commit -- Initialize Cache Locations | ||
run: | | ||
mkdir -p ~/.cache/pypoetry/virtualenvs | ||
|
@@ -372,7 +372,7 @@ jobs: | |
uses: actions/cache@v3 | ||
with: | ||
key: poetry-${{ hashFiles('./template/{{cookiecutter.profile_slug}}/pyproject.toml') }}-${{ runner.os }}-${{ env.CACHE_TTL }} | ||
path: ~/.cache/pypoetry/virtualenvs/ | ||
path: ~/.cache/pypoetry/virtualenvs | ||
|
||
- name: Pre-Commit Test -- Render Template | ||
run: | | ||
|
@@ -434,15 +434,21 @@ jobs: | |
env: | ||
WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} | ||
|
||
- name: Push Test -- Install Template Requirements | ||
run: | | ||
source ./template/.github/scripts/requirements.sh | ||
- name: Push Test -- Set up Python ${{ env.PYTHON_VERSION }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
|
||
- name: Push Test -- Install Template Requirements | ||
run: | | ||
source ./template/.github/scripts/requirements.sh | ||
- name: Push Test -- Clean Up Test Releases | ||
run: | | ||
source ./template/.github/scripts/prune_test_releases.sh | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.REMOTE_TOKEN }} | ||
|
||
- name: Push Test -- Render Template | ||
run: | | ||
source ./template/.github/scripts/template.sh "${SELECTION_TOML}" "GitHub Action" "[email protected]" | ||
|
@@ -545,15 +551,15 @@ jobs: | |
env: | ||
WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} | ||
|
||
- name: Shellcheck -- Install Template Requirements | ||
run: | | ||
source ./template/.github/scripts/requirements.sh | ||
- name: Shellcheck -- Set up Python ${{ env.PYTHON_VERSION }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
|
||
- name: Shellcheck -- Install Template Requirements | ||
run: | | ||
source ./template/.github/scripts/requirements.sh | ||
- name: Shellcheck -- Render Template | ||
run: | | ||
source ./template/.github/scripts/template.sh | ||
|
@@ -600,15 +606,15 @@ jobs: | |
env: | ||
WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} | ||
|
||
- name: Toml Lint -- Install Template Requirements | ||
run: | | ||
source ./template/.github/scripts/requirements.sh | ||
- name: Toml Lint -- Set up Python ${{ env.PYTHON_VERSION }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
|
||
- name: Toml Lint -- Install Template Requirements | ||
run: | | ||
source ./template/.github/scripts/requirements.sh | ||
- name: Toml Lint -- Render Template | ||
run: | | ||
source ./template/.github/scripts/template.sh | ||
|
@@ -651,15 +657,15 @@ jobs: | |
env: | ||
WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} | ||
|
||
- name: Yaml Lint Test-- Install Template Requirements | ||
run: | | ||
source ./template/.github/scripts/requirements.sh | ||
- name: Yaml Lint Test -- Set up Python ${{ env.PYTHON_VERSION }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
|
||
- name: Yaml Lint Test-- Install Template Requirements | ||
run: | | ||
source ./template/.github/scripts/requirements.sh | ||
- name: Yaml Lint Test -- Render Template | ||
run: | | ||
source ./template/.github/scripts/template.sh "${SELECTION_TOML}" | ||
|
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
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