We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d97c92a commit c9c93f6Copy full SHA for c9c93f6
.github/workflows/github-actions.yml
@@ -2,15 +2,17 @@ name: Continous integration
2
on: [push]
3
jobs:
4
Run-tests:
5
- runs-on: ubuntu-latest
+ #runs-on: ubuntu-latest
6
+ runs-on: windows-latest # Changed from ubuntu-latest to windows-latest
7
steps:
8
- uses: actions/checkout@v3
9
- name: Set up Python 3.9
10
uses: actions/setup-python@v4
11
with:
12
python-version: '3.9'
13
env:
- AGENT_TOOLSDIRECTORY: /opt/hostedtoolcache
14
+ #AGENT_TOOLSDIRECTORY: /opt/hostedtoolcache
15
+ AGENT_TOOLSDIRECTORY: C:\hostedtoolcache\ # Updated path for Windows
16
- name: Install
17
run: |
18
pip install --upgrade pip
0 commit comments