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
Peter Dave Hello 3c942defb5 Also add Python v3.6, v3.8 on GitHub Actions for test
Unlike Python v2 as v2.7 is 10 years old, Python v3 has more versions
alive amoung us, it'll be great if they will all be tested.
2020-12-04 14:44:13 +08:00

25 lines
598 B
YAML

name: OctoDNS
on: [pull_request]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7, 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