mirror of
https://github.com/veggiemonk/awesome-docker.git
synced 2026-04-01 10:25:40 +02:00
Some checks failed
Deploy to GitHub Pages / build (push) Failing after 3s
Deploy to GitHub Pages / deploy (push) Has been skipped
Pull Requests / Weekly QA / test (push) Failing after 4s
Broken Links Report / check-links (push) Failing after 9s
Weekly Health Report / health-check (push) Failing after 2s
* Improve Pages workflow and redesign site with accessible sidebar navigation * README clean up * Use Makefile website target in Pages deploy workflow
30 lines
699 B
Markdown
30 lines
699 B
Markdown
name: Pull Requests / Weekly QA
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
schedule:
|
|
- cron: "0 0 * * 6"
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # ratchet:actions/checkout@v6
|
|
|
|
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # ratchet:actions/setup-go@v6
|
|
with:
|
|
go-version-file: go.mod
|
|
|
|
- name: Build
|
|
run: go build -o awesome-docker ./cmd/awesome-docker
|
|
|
|
- name: Build website
|
|
run: ./awesome-docker build
|
|
|
|
- name: Validate
|
|
run: ./awesome-docker validate
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|