From 6428d3090d73b801ceda5a64e1d6483e01bdac35 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Fri, 22 Nov 2019 17:09:29 -0800 Subject: [PATCH 1/2] Initial actions PR Per @yzguy's issue https://github.com/github/octodns/issues/425 --- .github/workflows/main.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..726e2e8 --- /dev/null +++ b/.github/workflows/main.yml @@ -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 From e600575e47b56766520fe9d98348f340a06531cd Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Fri, 22 Nov 2019 17:29:41 -0800 Subject: [PATCH 2/2] Delete .travis.yml --- .travis.yml | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index eb609ff..0000000 --- a/.travis.yml +++ /dev/null @@ -1,10 +0,0 @@ -language: python -matrix: - include: - - python: 2.7 - - python: 3.7 -before_install: pip install --upgrade pip -script: ./script/cibuild -notifications: - email: - - ross@github.com