Use Docker container in GitHub Actions
runs-on は ubuntu-latest とかしか書けない。container で指定する。
code:yaml
runs-on: ubuntu-latest
container: ubuntu:latest
自分の Dockerfile を使う場合は docker build を書くのが良い?
https://help.github.com/ja/actions/building-actions/metadata-syntax-for-github-actions#
に runs っていうのがあるけど古いのか、動かない。
#Docker
#GitHub_Actions