This repository was archived by the owner on Feb 28, 2025. It is now read-only.
Add tests for edit_replace_cmd(). #278
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: | |
call-build-ubuntu: | |
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
uses: ./.github/workflows/ci-ubuntu.yml | |
call-build-fedora: | |
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
uses: ./.github/workflows/ci-fedora.yml | |
call-build-alpine: | |
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
uses: ./.github/workflows/ci-alpine.yml | |
call-build-macos: | |
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
uses: ./.github/workflows/ci-macos.yml | |
call-build-solaris: | |
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
uses: ./.github/workflows/ci-solaris.yml | |
call-build-freebsd: | |
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
uses: ./.github/workflows/ci-freebsd.yml | |
with: | |
# https://github.com/GNUAspell/aspell/pull/651 | |
CFLAGS: -Wno-strict-prototypes |