17
17
strategy :
18
18
fail-fast : false
19
19
matrix :
20
- python-version : ["3.8", "3.9", "3.10", "3.11", "3.12"]
20
+ # python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
21
+ python-version : ["3.8"]
21
22
22
23
services :
23
24
redis :
49
50
- name : Run tests
50
51
run : make test
51
52
53
+ - run : make test
54
+ - run : make test
55
+ - run : make test
56
+ - run : make test
57
+ - run : make test
58
+ - run : make test
59
+ - run : make test
60
+ - run : make test
61
+ - run : make test
62
+ - run : make test
63
+ - run : make test
64
+ - run : make test
65
+ - run : make test
66
+ - run : make test
67
+ - run : make test
68
+ - run : make test
69
+ - run : make test
70
+ - run : make test
71
+ - run : make test
72
+ - run : make test
73
+ - run : make test
74
+
52
75
- name : Verify typehints
53
76
run : make lint
54
77
@@ -67,61 +90,61 @@ jobs:
67
90
test_service_port : 9000
68
91
token : ${{ secrets.GITHUB_TOKEN }}
69
92
70
- windows :
71
- runs-on : windows-latest
72
-
73
- defaults :
74
- run :
75
- shell : powershell
76
-
77
- strategy :
78
- fail-fast : false
79
- matrix :
80
- python-version : ["3.8", "3.9", "3.10", "3.11", "3.12"]
81
-
82
- steps :
83
- - uses : actions/checkout@v4
84
- - name : Set up Python ${{ matrix.python-version }}
85
- uses : actions/setup-python@v4
86
- with :
87
- python-version : ${{ matrix.python-version }}
88
-
89
- - name : Setup DynamoDB
90
- run : |
91
- $ProgressPreference = "SilentlyContinue"
92
- iwr -outf dynamo.zip https://s3-us-west-2.amazonaws.com/dynamodb-local/dynamodb_local_latest.zip
93
- mkdir dynamo
94
- Expand-Archive -Path dynamo.zip -DestinationPath dynamo
95
- cd dynamo
96
- cmd /c "START /b java -Djava.library.path=./DynamoDBLocal_lib -jar ./DynamoDBLocal.jar"
97
-
98
- - name : Setup Consul
99
- run : |
100
- $ProgressPreference = "SilentlyContinue"
101
- iwr -outf consul.zip https://releases.hashicorp.com/consul/1.4.2/consul_1.4.2_windows_amd64.zip
102
- mkdir consul
103
- Expand-Archive -Path consul.zip -DestinationPath consul
104
- cd consul
105
- sc.exe create "Consul" binPath="$(Get-Location)/consul.exe agent -dev"
106
- sc.exe start "Consul"
107
-
108
- - name : Setup Redis
109
- run : |
110
- $ProgressPreference = "SilentlyContinue"
111
- iwr -outf redis.zip https://github.com/MicrosoftArchive/redis/releases/download/win-3.0.504/Redis-x64-3.0.504.zip
112
- mkdir redis
113
- Expand-Archive -Path redis.zip -DestinationPath redis
114
- cd redis
115
- ./redis-server --service-install
116
- ./redis-server --service-start
117
- Start-Sleep -s 5
118
- ./redis-cli ping
119
-
120
- - name : Install poetry
121
- uses : abatilo/actions-poetry@7b6d33e44b4f08d7021a1dee3c044e9c253d6439
122
-
123
- - name : Install requirements
124
- run : poetry install --all-extras
125
-
126
- - name : Run tests
127
- run : make test
93
+ # windows:
94
+ # runs-on: windows-latest
95
+ #
96
+ # defaults:
97
+ # run:
98
+ # shell: powershell
99
+ #
100
+ # strategy:
101
+ # fail-fast: false
102
+ # matrix:
103
+ # python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
104
+ #
105
+ # steps:
106
+ # - uses: actions/checkout@v4
107
+ # - name: Set up Python ${{ matrix.python-version }}
108
+ # uses: actions/setup-python@v4
109
+ # with:
110
+ # python-version: ${{ matrix.python-version }}
111
+ #
112
+ # - name: Setup DynamoDB
113
+ # run: |
114
+ # $ProgressPreference = "SilentlyContinue"
115
+ # iwr -outf dynamo.zip https://s3-us-west-2.amazonaws.com/dynamodb-local/dynamodb_local_latest.zip
116
+ # mkdir dynamo
117
+ # Expand-Archive -Path dynamo.zip -DestinationPath dynamo
118
+ # cd dynamo
119
+ # cmd /c "START /b java -Djava.library.path=./DynamoDBLocal_lib -jar ./DynamoDBLocal.jar"
120
+ #
121
+ # - name: Setup Consul
122
+ # run: |
123
+ # $ProgressPreference = "SilentlyContinue"
124
+ # iwr -outf consul.zip https://releases.hashicorp.com/consul/1.4.2/consul_1.4.2_windows_amd64.zip
125
+ # mkdir consul
126
+ # Expand-Archive -Path consul.zip -DestinationPath consul
127
+ # cd consul
128
+ # sc.exe create "Consul" binPath="$(Get-Location)/consul.exe agent -dev"
129
+ # sc.exe start "Consul"
130
+ #
131
+ # - name: Setup Redis
132
+ # run: |
133
+ # $ProgressPreference = "SilentlyContinue"
134
+ # iwr -outf redis.zip https://github.com/MicrosoftArchive/redis/releases/download/win-3.0.504/Redis-x64-3.0.504.zip
135
+ # mkdir redis
136
+ # Expand-Archive -Path redis.zip -DestinationPath redis
137
+ # cd redis
138
+ # ./redis-server --service-install
139
+ # ./redis-server --service-start
140
+ # Start-Sleep -s 5
141
+ # ./redis-cli ping
142
+ #
143
+ # - name: Install poetry
144
+ # uses: abatilo/actions-poetry@7b6d33e44b4f08d7021a1dee3c044e9c253d6439
145
+ #
146
+ # - name: Install requirements
147
+ # run: poetry install --all-extras
148
+ #
149
+ # - name: Run tests
150
+ # run: make test
0 commit comments