mirror of
https://github.com/ansible-collections/hetzner.hcloud
synced 2024-11-10 06:34:13 +00:00
de1eed9cb5
##### SUMMARY This is an attempt to fix the linting job: https://github.com/ansible-collections/hetzner.hcloud/actions/runs/6692855477/job/18182866932 Run on python 3.11 until the following ticket is solved: https://github.com/aio-libs/aiohttp/issues/7675
26 lines
505 B
YAML
26 lines
505 B
YAML
name: Vendor
|
|
|
|
on:
|
|
push:
|
|
branches: [main, stable-1]
|
|
paths:
|
|
- plugins/module_utils/vendor/**
|
|
- scripts/vendor.py
|
|
pull_request:
|
|
paths:
|
|
- plugins/module_utils/vendor/**
|
|
- scripts/vendor.py
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Setup python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.11"
|
|
|
|
- name: Ensure vendors are not diverging
|
|
run: make vendor-check
|