Add a list of known extensions #73
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: Test Docker image | |
on: | |
push: | |
branches: [ main ] | |
paths-ignore: | |
- 'docs/**' | |
- CHANGELOG.md | |
- LICENSE | |
- README.md | |
pull_request: | |
branches: [ main ] | |
paths-ignore: | |
- 'docs/**' | |
- CHANGELOG.md | |
- LICENSE | |
- README.md | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Goss | |
run: curl -fsSL https://goss.rocks/install | sh | |
- name: Run tests | |
run: make test-docker |