Remove E2E test steps from GitHub Actions workflow #8
Workflow file for this run
This file contains hidden or 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: Run tests | |
on: | |
push: | |
branches: | |
- main | |
- dajustp/add-gh-action-tests | |
paths-ignore: [ '**.md' ] | |
pull_request: | |
branches: | |
- main | |
- dajustp/add-gh-action-tests | |
paths-ignore: [ '**.md' ] | |
env: | |
AzureWebJobsStorage: UseDevelopmentStorage=true | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: 'Install .NET 3.1' | |
run: | | |
Import-Module ".\pipelineUtilities.psm1" -Force | |
Install-Dotnet | |
- name: 'Build' | |
run: ./build.ps1 -Configuration Release |