File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 1111# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1212jobs :
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
Original file line number Diff line number Diff line change 44
55jobs :
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
Original file line number Diff line number Diff line change 1111# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1212jobs :
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
You can’t perform that action at this time.
0 commit comments