From 2d646b6b833dd7fec04d94116e0d872fda8c4411 Mon Sep 17 00:00:00 2001 From: Ryuichi Ueda Date: Sat, 30 Nov 2019 13:14:36 +0900 Subject: [PATCH] Add install of numpy --- .github/workflows/main.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a5c1570..55cd99a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,12 +6,15 @@ jobs: build: runs-on: ubuntu-latest + strategy: + matrix: + python-version: [3.6, 3.7, 3.8] steps: - uses: actions/checkout@v1 - - name: Run a one-line script - run: echo Hello, world! - - name: Run a multi-line script + - name: Set up and test with Python ${{ matrix.python-version }} run: | + python -m pip install --upgrade pip + pip install numpy sudo apt-get install bats ./test