mirror of
https://github.com/awesome-selfhosted/awesome-selfhosted-data.git
synced 2026-03-11 08:55:24 +00:00
- rebuild markdown README.md and check for differences against the original - add build steps to makefile so it can be run locally - call make from Github actions so it runs automatically on commits/pull requests
16 lines
258 B
YAML
16 lines
258 B
YAML
name: awesome-selfhosted CI
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
branches: [ master ]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v3
|
|
- name: build
|
|
run: make build
|