Skip to content

Commit

Permalink
Merge pull request #1 from deepmind/test_432462427
Browse files Browse the repository at this point in the history
Add continuous integration.
  • Loading branch information
fidlej authored Mar 4, 2022
2 parents c9d92c7 + 9c032bc commit 3168bfd
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: ci

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

jobs:
build-and-test:
name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}"
runs-on: "${{ matrix.os }}"

strategy:
matrix:
python-version: ["3.7", "3.8", "3.9"]
os: [ubuntu-latest]

steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v1"
with:
python-version: "${{ matrix.python-version }}"
- name: Run CI tests
run: bash test.sh
shell: bash

0 comments on commit 3168bfd

Please sign in to comment.