Skip to content

chore(deps): update actions/checkout action to v4.1.6 #523

chore(deps): update actions/checkout action to v4.1.6

chore(deps): update actions/checkout action to v4.1.6 #523

Workflow file for this run

name: Build
on:
push:
workflow_dispatch:
jobs:
build:
permissions:
contents: read
name: Build
runs-on: ubuntu-latest
if: ${{ !contains(github.event.head_commit.message, '[ci skip]') || github.event_name == 'workflow_dispatch' }}
strategy:
fail-fast: true
matrix:
CPPFLAGS:
- ""
- "-DMINIMALISTIC_BUILD -DLIBSSH_STATIC=1"
steps:
- name: Check out source code
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Install dependencies
run: sudo apt-get -qq update && sudo apt-get install -y libssh-dev
- name: make
run: make CPPFLAGS="${{ matrix.CPPFLAGS }}"