Skip to content

Commit

Permalink
Add install of numpy
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuichiueda committed Nov 30, 2019
1 parent 12fb996 commit 2d646b6
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 2d646b6

Please sign in to comment.