Skip to content

build(deps): bump actions/checkout from 5 to 6 #22

build(deps): bump actions/checkout from 5 to 6

build(deps): bump actions/checkout from 5 to 6 #22

Workflow file for this run

name: Musl
on:
push:
paths:
- '.github/workflows/musl.yml'
- 'src/**'
- 'config.mak.def'
- 'Makefile'
branches:
- main
tags: ['*']
pull_request:
workflow_dispatch:
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
test:
name: Alpine Musl
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Alpine Linux
uses: jirutka/setup-alpine@v1
with:
arch: x86_64
branch: latest-stable
packages: >
build-base
- name: Env Version
run: |
gcc --version
ld --version
apk info musl
shell: alpine.sh {0}
- name: Run Test
run: make -j`nproc`
shell: alpine.sh {0}
- name: Show Test Result
run: cat src/REPORT