Skip to content

Commit 7f8ce4c

Browse files
committed
Fix actions
1 parent 979393f commit 7f8ce4c

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/production.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1212
jobs:
1313
# This workflow contains a single job called "build"
14-
build:
14+
productionBuild:
1515
# The type of runner that the job will run on
1616
runs-on: ubuntu-latest
1717

.github/workflows/productionDeploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44

55
jobs:
66
# This workflow contains a single job called "build"
7-
build:
7+
deployInProduction:
88
# The type of runner that the job will run on
99
runs-on: ubuntu-latest
1010

.github/workflows/test.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,24 @@ on:
1111
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1212
jobs:
1313
# This workflow contains a single job called "build"
14-
build:
14+
test:
1515
# The type of runner that the job will run on
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: [3.6]
19+
python-version: [3.9]
2020

2121

2222
# Steps represent a sequence of tasks that will be executed as part of the job
2323
steps:
2424
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2525
- uses: actions/checkout@v2
2626
- name: Set up Python ${{ matrix.python-version }}
27-
uses: actions/setup-python@v2
27+
uses: actions/setup-python@v4
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030
- name: Install dependencies
3131
run: |
32-
apt-get update && apt-get install -y python-dev
3332
python -m pip install --upgrade pip
3433
pip install pytest pyyaml
3534
- name: Test with pytest

0 commit comments

Comments
 (0)