Skip to content

Add support for Podman env. #1493

Add support for Podman env.

Add support for Podman env. #1493

Workflow file for this run

name: Tornjak CI
on: [push, pull_request]
jobs:
tornjak-build:
runs-on: ubuntu-latest
steps:
- name: Show trigger info
run: |
cat <<EOF >>"${GITHUB_STEP_SUMMARY}"
# Workflow job info
- 🎉 The job was automatically triggered by a ${{ github.event_name }} event.
- 🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!
- 🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}.
EOF
- name: Check out repository code
uses: actions/[email protected]
- name: Install Golang
uses: actions/[email protected]
with:
go-version-file: go.mod
check-latest: true
cache: true
- uses: actions/[email protected]
with:
node-version: '18'
- name: Download modules
run: go mod download
- name: golangci-lint
uses: golangci/[email protected]
with:
version: v1.53
args: --timeout 7m
- name: Build binaries
run: make binaries
- name: Build images
run: make images
- name: Print job result
run: |
cat <<EOF >>"${GITHUB_STEP_SUMMARY}"
- 🍏 This job's status is ${{ job.status }}.
EOF