[pre-commit.ci] pre-commit autoupdate (#318) #871
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: "🐳 Docker Builder" | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events but only for the master branch | |
on: | |
pull_request: | |
branches: [main] | |
paths-ignore: | |
- "docs/**" | |
push: | |
branches: [main] | |
paths-ignore: | |
- "docs/**" | |
jobs: | |
docker-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test Docker Build | |
run: | | |
docker build -f tests/fixtures/test-build-material.dockerfile -t mkdocs-plugins/rss . |