mirror of
https://github.com/proxytunnel/proxytunnel.git
synced 2026-07-18 00:44:51 +00:00
19 lines
418 B
YAML
19 lines
418 B
YAML
name: Build for Windows (Cygwin)
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v6.0.2
|
|
- uses: cygwin/cygwin-install-action@v6.1
|
|
with:
|
|
packages: gcc-core
|
|
- name: test
|
|
shell: bash {0}
|
|
run: gcc --version && cc --version && make --version && ld --version
|
|
- name: Build
|
|
shell: bash {0}
|
|
run: make && make docs
|