Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

Update dependencies #39

Update dependencies

Update dependencies #39

Workflow file for this run

name: docker
on:
push:
branches:
- master
pull_request:
permissions:
contents: read
# Cancel running jobs for the same branch and workflow.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build image
run: docker build . -t jenkins-to-github-notify
- name: Run tests
run: docker run jenkins-to-github-notify pytest --color=yes