This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
Bump composer from 94ccec0
to 2df6a8c
#1404
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: push | |
name: Docker build and run | |
jobs: | |
build: | |
name: Docker build and run | |
if: '!github.event.deleted' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Docker build | |
run: docker build --tag depcheck:latest . | |
- name: Run in Docker | |
run: docker run -t --rm depcheck:latest help |