Require a token for accessing Request TRN journey #3716
Workflow file for this run
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: Pull request build | |
on: | |
pull_request: | |
merge_group: | |
permissions: | |
checks: write | |
deployments: write | |
packages: write | |
pull-requests: write | |
id-token: write | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: extractions/setup-just@v2 | |
- name: Install tools | |
run: just install-tools | |
- name: Lint | |
run: | | |
git fetch origin main --quiet --depth=1 | |
CHANGED_FILES=$(git diff --name-only origin/main $GITHUB_SHA | { grep -oP '^TeachingRecordSystem\/\K.*\.cs(proj)?$' || true; }) | |
if [ "$CHANGED_FILES" == "" ]; then | |
echo "::notice::No changes to lint" | |
exit 0 | |
fi | |
# If project files have changed then dependencies may have been updated, which may effect lint results (e.g. namespace imports); | |
# lint everything. | |
if [ $(echo "$CHANGED_FILES" | grep -c '\.csproj$') -gt 0 ]; then | |
INCLUDE_ARG="" | |
echo "::notice::Linting entire codebase" | |
else | |
INCLUDE_ARG="--include $(echo "$CHANGED_FILES" | grep '\.cs$' | tr '\n' ' ')" | |
echo "::notice::Linting changed files only" | |
fi | |
dotnet format --verify-no-changes $INCLUDE_ARG | |
working-directory: TeachingRecordSystem | |
validate_terraform: | |
name: Validate Terraform | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: hashicorp/setup-terraform@v3 | |
with: | |
terraform_version: 1.5.0 | |
- name: Check formatting | |
run: terraform fmt -check -diff | |
working-directory: terraform/aks | |
- name: Validate | |
run: | | |
curl -sL https://github.com/coretech/terrafile/releases/download/v0.8/terrafile_0.8_Linux_x86_64.tar.gz | tar xz terrafile | |
./terrafile -p vendor/modules -f config/dev_Terrafile | |
terraform init -backend=false | |
terraform validate -no-color | |
working-directory: terraform/aks | |
- name: Lint | |
uses: reviewdog/action-tflint@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
tflint_rulesets: azurerm | |
working_directory: terraform/aks | |
continue-on-error: true # temporary- we're getting sporadic 503 errors here in action setup | |
tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
project: | |
[ | |
TeachingRecordSystem.Core.Tests, | |
TeachingRecordSystem.Api.Tests, | |
TeachingRecordSystem.SupportUi.Tests, | |
TeachingRecordSystem.AuthorizeAccess.Tests, | |
TeachingRecordSystem.SupportUi.EndToEndTests, | |
TeachingRecordSystem.AuthorizeAccess.EndToEndTests, | |
] | |
services: | |
postgres: | |
image: postgres:15 | |
env: | |
POSTGRES_PASSWORD: trs | |
POSTGRES_DB: trs | |
options: >- | |
--name postgres | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
steps: | |
- name: Set postgres wal_level to logical | |
run: | | |
docker exec -i postgres bash << EOF | |
echo "wal_level = logical" >> /var/lib/postgresql/data/postgresql.conf | |
EOF | |
docker restart --time 0 postgres | |
- uses: actions/checkout@v4 | |
- uses: extractions/setup-just@v2 | |
- name: Install tools | |
run: just install-tools | |
- name: Restore cached packages | |
id: cache-packages-restore | |
uses: actions/cache/restore@v4 | |
with: | |
path: | | |
~/.nuget/packages | |
~/.local/share/.librarymanager/cache | |
key: ${{ hashFiles('**/packages.lock.json', '**/libman.json') }} | |
- name: Restore | |
run: just restore | |
- name: Cache restored packages | |
id: cache-packages-save | |
uses: actions/cache/save@v4 | |
with: | |
path: | | |
~/.nuget/packages | |
~/.local/share/.librarymanager/cache | |
key: ${{ steps.cache-packages-restore.outputs.cache-primary-key }} | |
if: steps.cache-packages-restore.outputs.cache-hit != 'true' | |
- name: Build project | |
run: dotnet build -c Release --no-restore | |
working-directory: TeachingRecordSystem/tests/${{ matrix.project }} | |
- name: Check for Playwright | |
run: | | |
playwright_script=./bin/Release/net8.0/playwright.ps1 | |
if [ -f $playwright_script ]; then | |
pwsh $playwright_script install chromium | |
fi | |
working-directory: TeachingRecordSystem/tests/${{ matrix.project }} | |
- name: Run tests | |
uses: ./.github/workflows/actions/test | |
with: | |
test_project_path: TeachingRecordSystem/tests/${{ matrix.project }} | |
report_name: "${{ matrix.project }} test results" | |
dotnet_test_args: >- | |
--no-build | |
-e ConnectionStrings__DefaultConnection="Host=localhost;Username=postgres;Password=trs;Database=trs" | |
timeout-minutes: 15 | |
package: | |
name: Package application | |
uses: ./.github/workflows/package.yml | |
secrets: inherit | |
deploy_dev: | |
name: Deploy dev environment | |
runs-on: ubuntu-latest | |
needs: [lint, validate_terraform, tests, package] | |
environment: dev | |
concurrency: deploy_dev | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/workflows/actions/deploy-aks-environment | |
id: deploy | |
with: | |
environment_name: dev | |
docker_image: ${{ needs.package.outputs.docker_image }} | |
azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} |