1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00
Files
github-octodns/.github/workflows/main.yml
2021-02-16 07:39:52 -08:00

29 lines
733 B
YAML

name: OctoDNS
on:
pull_request:
paths-ignore:
- '**.md'
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
# Tested versions based on dates in https://devguide.python.org/devcycle/#end-of-life-branches,
python-version: [3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@master
- name: Setup python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install virtualenv
- name: CI Build
run: |
./script/cibuild