Run GitHub workflow on Docker image with a Dockerfile?
I would like to run my CI on a Docker image. How should I write my .github/workflow/main.yml? name: CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: name: build runs: using: 'docker' image: '.devcontainer/Dockerfile' steps:…