Skip to content

Initial commit

Initial commit #2

Workflow file for this run

name: Workflow
on:
push:
branches: [ main ]
jobs:
check_plugins:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # for loading all branches and tags
- name: Set up Golang
uses: actions/setup-go@v3
with:
go-version: "1.20"
- name: Set up Git
run: |
git config --global user.email "${{ github.event.pusher.email }}"
git config --global user.name "${{ github.event.pusher.name }}"
- name: Render and commit HTML
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_REPOSITORY: ${{ github.repository }}
GITHUB_ACTOR: ${{ github.actor }}
run: |
cd web/workflow
go mod tidy
go run .