Skip to content

Commit

Permalink
Merge pull request #99 from FullStackWithLawrence/next
Browse files Browse the repository at this point in the history
Add a way to manually run tests
  • Loading branch information
lpm0073 authored Nov 17, 2023
2 parents 0f73c3d + 2c0ca23 commit 5d72df8
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,22 @@

- Fixes #[Add issue number here.]

## Describe Changes

## Changes
<!-- Describe your changes in detail, if applicable. -->
_Describe what this Pull Request does_

## Testing
<!-- Describe how the changes can be tested -->
_Describe the testing that has been done or needs to be done_

## Screenshots
<!-- If applicable, add screenshots to help explain your changes -->
_Add any relevant screenshots_

## Dependencies
<!-- List any dependencies that are required for this change -->
_List dependencies_

## Breaking Changes
<!-- Does this PR contain any breaking changes? -->
_Describe any breaking changes_
33 changes: 33 additions & 0 deletions .github/workflows/runTests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#------------------------------------------------------------------------------
# Run all tests
#------------------------------------------------------------------------------
name: Run all tests

on:
workflow_dispatch:
env:
python-version: "3.11"

jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
id: checkout
uses: actions/checkout@v4

- name: Run Python tests
uses: ./.github/actions/tests/python
with:
python-version: "${{ env.python-version}}"

- name: Run Terraform tests
uses: ./.github/actions/tests/reactjs

- name: Run ReactJS tests
uses: ./.github/actions/tests/reactjs

- name: Run pre-commit tests
uses: ./.github/actions/tests/pre-commit
with:
python-version: "${{ env.python-version}}"

0 comments on commit 5d72df8

Please sign in to comment.