Skip to content

Commit

Permalink
switch to github actions from travis-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
piranha committed Mar 22, 2021
1 parent 42a70ca commit 1d817d5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 7 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Nomad CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: [2.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: "pip install -r requirements-dev.txt"
- name: Run tests
run: "make test"
7 changes: 0 additions & 7 deletions .travis.yml

This file was deleted.

0 comments on commit 1d817d5

Please sign in to comment.