summaryrefslogtreecommitdiff
path: root/.github/workflows/main.yml
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2020-12-02 17:40:06 +0100
committerMatěj Cepl <mcepl@cepl.eu>2020-12-03 07:38:35 +0100
commitcb4529c45e96107d754a59c0904311695bddb350 (patch)
treeedb45dead63a02e55a835d9dd9966bb4bd02bd9f /.github/workflows/main.yml
parent2ed7a360dcba129c27d1232ea561b05d5391ae4b (diff)
downloadm2crypto-cb4529c45e96107d754a59c0904311695bddb350.tar.gz
Use parametrized to create parametrized tests.
Stop testing 2.7 on Fedora. Remove .travis.yml, we have Github Actions working
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r--.github/workflows/main.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 5330f27..7b23f84 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -22,7 +22,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip flake8
- if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi
+ if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names