Skip to content
This repository was archived by the owner on Sep 26, 2025. It is now read-only.

Commit f655f67

Browse files
authored
Change from travis ci to github actions (#23)
1 parent 2192311 commit f655f67

File tree

2 files changed

+26
-15
lines changed

2 files changed

+26
-15
lines changed

.github/workflows/ci.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
on: [push, pull_request]
2+
3+
defaults:
4+
run:
5+
shell: bash
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
strategy:
11+
fail-fast: false
12+
matrix:
13+
include:
14+
- IDP_CONF: intelpython3_core
15+
- IDP_CONF: intelpython3_full
16+
steps:
17+
- uses: actions/checkout@v2
18+
- uses: actions/setup-python@v2
19+
with:
20+
python-version: '3.x'
21+
- name: Install Dependencies
22+
run: |
23+
pip install -r requirements.txt
24+
- name: Build and test
25+
run: |
26+
python images.py --test ${{ matrix.IDP_CONF }}

.travis.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)