Skip to content

Commit 7025627

Browse files
authored
Add bash commands to install gcc
Install gcc, python-devel
1 parent 411cfb7 commit 7025627

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/pythonpackage.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,18 @@ jobs:
1010
max-parallel: 4
1111
matrix:
1212
python-version: [3.5, 3.6, 3.7, 3.8]
13+
architectures: [x86, x86_64]
1314

1415
steps:
1516
- uses: actions/checkout@v1
1617
- name: Set up Python ${{ matrix.python-version }}
1718
uses: actions/setup-python@v1
1819
with:
1920
python-version: ${{ matrix.python-version }}
21+
architecture: ${{ matrix.architextures }}
22+
- name: Bash Command Lines for GitHub Actions
23+
uses: jdickey/[email protected]
24+
args: ["apt-get install gcc python-dev -y"]
2025
- name: Install dependencies
2126
run: |
2227
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)