-
Notifications
You must be signed in to change notification settings - Fork 3
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
Drew Meyers
committed
Feb 22, 2024
1 parent
fbf6133
commit 5023547
Showing
1 changed file
with
42 additions
and
0 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,42 @@ | ||
name: Smoke Tests with Pytest | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
pre-commit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v3 | ||
with: | ||
python-version: '3.11' | ||
- name: Read .terraform-version | ||
id: tf_version | ||
run: echo "TF_VERSION=$(cat .terraform-version)" >> $GITHUB_ENV | ||
- name: Setup Terraform | ||
uses: hashicorp/setup-terraform@v3 | ||
with: | ||
terraform_version: ${{ env.TF_VERSION }} | ||
- name: Install Hadolint for pre-commit hook | ||
run: | | ||
wget -O /usr/local/bin/hadolint https://github.com/hadolint/hadolint/releases/latest/download/hadolint-Linux-x86_64 | ||
chmod +x /usr/local/bin/hadolint | ||
- name: Install TFLint for pre-commit hook | ||
run: | | ||
curl -s https://raw.githubusercontent.com/terraform-linters/tflint/master/install_linux.sh | bash | ||
- name: Install trivy for pre-commit hook | ||
run: | | ||
sudo apt-get install wget apt-transport-https gnupg lsb-release | ||
wget -qO - https://aquasecurity.github.io/trivy-repo/deb/public.key | gpg --dearmor | sudo tee /usr/share/keyrings/trivy.gpg > /dev/null | ||
echo "deb [signed-by=/usr/share/keyrings/trivy.gpg] https://aquasecurity.github.io/trivy-repo/deb $(lsb_release -sc) main" | sudo tee -a /etc/apt/sources.list.d/trivy.list | ||
sudo apt-get update | ||
sudo apt-get install trivy | ||
# - name: Install dependencies for Python tests | ||
# run: | | ||
# pip install -e ".[test]" | ||
- uses: pre-commit/[email protected] | ||
with: | ||
extra_args: --config .pre-commit-config-ci.yaml --all-files | ||
# - name: Test with pytest | ||
# run: | | ||
# pytest -vv --gherkin-terminal-reporter unity-test/unit |