mirror of
https://github.com/github/octodns.git
synced 2024-05-11 05:55:00 +00:00
Initial actions PR
Per @yzguy's issue https://github.com/github/octodns/issues/425
This commit is contained in:
24
.github/workflows/main.yml
vendored
Normal file
24
.github/workflows/main.yml
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
name: OctoDNS
|
||||
on: [pull_request]
|
||||
|
||||
jobs:
|
||||
ci:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: [2.7, 3.7]
|
||||
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
|
Reference in New Issue
Block a user