Skip to content

Commit

Permalink
ci: update actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dlshriver committed May 15, 2022
1 parent e085149 commit c97cb69
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
# This is a basic workflow to help you get started with Actions

name: CI

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [main, develop]
paths:
Expand All @@ -21,11 +17,8 @@ on:
- "tests/**"
- "pyproject.toml"
- "requirements.txt"

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
tests:
runs-on: ubuntu-latest
Expand All @@ -34,14 +27,14 @@ jobs:
python-version: [3.7, 3.8, 3.9]
test-type: ["unit", "system"]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}

- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: |
~/.cache/dnnv
Expand Down Expand Up @@ -109,4 +102,4 @@ jobs:
coverage xml
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3

0 comments on commit c97cb69

Please sign in to comment.