Skip to content

Commit

Permalink
Bump actions/checkout from v2 to v3 (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
frodeaa authored Jul 29, 2023
1 parent 7d65f72 commit d82417f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
publish-docker-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: build and publish docker image
run: |
echo "${{ secrets.DOCKER_HUB_TOKEN }}" | docker login -u "${{ secrets.DOCKER_HUB_USERNAME }}" --password-stdin docker.io
Expand Down
10 changes: 3 additions & 7 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,13 @@ name: CI
on:
pull_request:
branches: [ master ]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build
run: make build

- name: test examples
run: |
- uses: actions/checkout@v3
- run: make build
- run: |
make test
make test -e PYTEST_OPTS='--workers auto'

0 comments on commit d82417f

Please sign in to comment.