Modify Get-GitHubRepoInfoSnapshot
and add tests for `Get-GitHubRepo…
#203
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: APIs Tests on Windows | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
jobs: | |
api-tests-on-windows: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Test APIs | |
shell: pwsh | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_USER_NAME: ${{ secrets.GH_USER_NAME }} | |
GH_REPO_NAME: ${{ secrets.GH_REPO_NAME }} | |
run: ./Scripts/test_APIs.ps1 |