Skip to content
This repository has been archived by the owner on Jan 15, 2025. It is now read-only.

(PE-36763) Migrate CURLOPT_PROTOCOLS{,_STR} #11

(PE-36763) Migrate CURLOPT_PROTOCOLS{,_STR}

(PE-36763) Migrate CURLOPT_PROTOCOLS{,_STR} #11

Workflow file for this run

name: CI Checks
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
ci_checks:
strategy:
matrix:
options:
- make_command: cpplint
- make_command: cppcheck
- make_command: all test install ARGS=-v
cmake_extra_vars: -DCMAKE_BUILD_TYPE=Debug -DCOVERALLS=ON
coveralls: ON
- make_command: all test install ARGS=-v
cmake_extra_vars: -DLEATHERMAN_USE_LOCALES=OFF
- make_command: all test install ARGS=-v
cmake_extra_vars: -DLEATHERMAN_GETTEXT=OFF
runs-on: ubuntu-latest
steps:
- name: checkout current pr
uses: actions/checkout@v4
- name: docker pull and make
uses: ./.github/actions/docker_pull_and_make
with:
cmake_extra_vars: ${{ matrix.options.cmake_extra_vars }}
make_command: ${{ matrix.options.make_command }}
coveralls: ${{ matrix.options.coveralls }}