Skip to content

Commit c9c93f6

Browse files
Change workflow to run on a windows server
1 parent d97c92a commit c9c93f6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/github-actions.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,17 @@ name: Continous integration
22
on: [push]
33
jobs:
44
Run-tests:
5-
runs-on: ubuntu-latest
5+
#runs-on: ubuntu-latest
6+
runs-on: windows-latest # Changed from ubuntu-latest to windows-latest
67
steps:
78
- uses: actions/checkout@v3
89
- name: Set up Python 3.9
910
uses: actions/setup-python@v4
1011
with:
1112
python-version: '3.9'
1213
env:
13-
AGENT_TOOLSDIRECTORY: /opt/hostedtoolcache
14+
#AGENT_TOOLSDIRECTORY: /opt/hostedtoolcache
15+
AGENT_TOOLSDIRECTORY: C:\hostedtoolcache\ # Updated path for Windows
1416
- name: Install
1517
run: |
1618
pip install --upgrade pip

0 commit comments

Comments
 (0)