Update .gitattributes #32
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: cooljeanius/mdnsd | |
on: | |
push: | |
branches: | |
- "**/*" | |
pull_request: | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
# 'Transformers::TravisCI::Scripts::Dependencies' dependencies are | |
# currently unsupported | |
# 'compiler' was not transformed because there is no suitable equivalent | |
# in GitHub Actions | |
- run: "./configure CC=${{ matrix.compiler }} && make && make check" | |
# TODO: add distcheck | |
# (currently fails with: testsuite: error: cannot find ../mhttp) | |
strategy: | |
matrix: | |
compiler: | |
- clang | |
- gcc | |
os: | |
- ubuntu-latest | |
- macos-latest |