CI #42
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
--- | |
name: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: make ci | |
- name: 'Execute cat /etc/*-release using default sh shell via default Docker container' | |
uses: cliffano/command-docker-action@main | |
with: | |
command: 'cat /etc/*-release' | |
- name: 'Execute cat /etc/*-release using bash shell via Ubuntu 22.04 Docker container' | |
uses: cliffano/command-docker-action@main | |
with: | |
command: 'cat /etc/*-release' | |
image: ubuntu:22.04 | |
shell: bash | |
- name: 'Execute cat /etc/*-release using bash shell via Rocky Linux 9.3 Docker container' | |
uses: cliffano/command-docker-action@main | |
with: | |
command: 'cat /etc/*-release' | |
image: rockylinux:9.3 | |
shell: bash |