Skip to content

run tests on widnows #3

run tests on widnows

run tests on widnows #3

Workflow file for this run

name: Test on windows
on:
pull_request:
branches:
- main
push:
branches:
- main
repository_dispatch:
type: test-stage
jobs:
test:
name: Testing
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.9
cache: 'pip'
- name: Install package
run: make install
- name: Test
run: set BASE_NUCLIA_DOMAIN="stashify.cloud" && set GA_TESTING_SERVICE_TOKEN="${{ secrets.STAGE_TESTING_SERVICE_TOKEN }}" && set GA_TESTING_TOKEN="${{ secrets.STAGE_TESTING_TOKEN }}" && set GA_TESTING_NUA="${{ secrets.TEST_EUROPE1_STASHIFY_NUA }}" && make test