Skip to content

Replace bash with sh, nad use indirect var expansion for executing co… #7

Replace bash with sh, nad use indirect var expansion for executing co…

Replace bash with sh, nad use indirect var expansion for executing co… #7

Workflow file for this run

---
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'