Temporary pass of docker image via runtime args. #5
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
--- | |
name: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: make ci | |
- name: 'Execute uname -a via 22.04 Ubuntu Docker container' | |
uses: cliffano/command-docker-action@main | |
with: | |
command: 'uname -a' | |
docker_image: 'ubuntu:22.04' |