0
0
mirror of https://github.com/thegeeklab/corenetworks.git synced 2024-06-02 16:59:41 +02:00

add missing fetch task

This commit is contained in:
Robert Kaussow 2021-01-03 13:44:46 +01:00
parent 8b4ef39c83
commit 94e77a292a
No known key found for this signature in database
GPG Key ID: 65362AE74AF98B61
2 changed files with 13 additions and 1 deletions

View File

@ -65,6 +65,13 @@ local PipelineTest = {
arch: 'amd64',
},
steps: [
{
name: 'fetch',
image: 'python:3.9',
commands: [
'git fetch -tq',
],
},
PythonVersion(pyversion='3.6'),
PythonVersion(pyversion='3.7'),
PythonVersion(pyversion='3.8'),

View File

@ -45,6 +45,11 @@ platform:
arch: amd64
steps:
- name: fetch
image: python:3.9
commands:
- git fetch -tq
- name: python36-pytest
image: python:3.6
commands:
@ -353,6 +358,6 @@ depends_on:
---
kind: signature
hmac: f27fd5aca151357587bd0138a4dcef552f90278cab5557e8887f87622f6e7f31
hmac: 1b2b0228687be4880c17d183c54b83a4d1a4d1adc1f3d6c4c92d180cecdaffbb
...