lego/.github/workflows/pr.yml

77 lines
2.2 KiB
YAML
Raw Normal View History

2020-12-09 19:52:21 +00:00
name: Main
on:
push:
branches:
- master
pull_request:
jobs:
main:
name: Main Process
runs-on: ubuntu-latest
env:
2023-08-19 16:05:33 +00:00
GO_VERSION: stable
2024-08-15 00:54:50 +00:00
GOLANGCI_LINT_VERSION: v1.60.1
2024-08-14 21:55:11 +00:00
HUGO_VERSION: 0.131.0
2020-12-09 19:52:21 +00:00
CGO_ENABLED: 0
LEGO_E2E_TESTS: CI
MEMCACHED_HOSTS: localhost:11211
steps:
# https://github.com/marketplace/actions/checkout
- name: Check out code
2024-02-02 01:21:10 +00:00
uses: actions/checkout@v4
2020-12-09 19:52:21 +00:00
with:
fetch-depth: 0
2023-08-19 16:05:33 +00:00
# https://github.com/marketplace/actions/setup-go-environment
- name: Set up Go ${{ env.GO_VERSION }}
2024-02-02 01:21:10 +00:00
uses: actions/setup-go@v5
2020-12-09 19:52:21 +00:00
with:
2023-08-19 16:05:33 +00:00
go-version: ${{ env.GO_VERSION }}
2020-12-09 19:52:21 +00:00
- name: Check and get dependencies
run: |
go mod tidy
git diff --exit-code go.mod
git diff --exit-code go.sum
# https://golangci-lint.run/usage/install#other-ci
- name: Install golangci-lint ${{ env.GOLANGCI_LINT_VERSION }}
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin ${GOLANGCI_LINT_VERSION}
golangci-lint --version
2023-03-01 22:56:19 +00:00
- name: Install Pebble
2024-02-24 19:49:40 +00:00
run: go install github.com/letsencrypt/pebble/v2/cmd/pebble@3fe019bbc0a41ed16e2fee31592bb91751acaa47
2023-03-01 22:56:19 +00:00
- name: Install challtestsrv
2024-02-24 19:49:40 +00:00
run: go install github.com/letsencrypt/pebble/v2/cmd/pebble-challtestsrv@3fe019bbc0a41ed16e2fee31592bb91751acaa47
2020-12-09 19:52:21 +00:00
- name: Set up a Memcached server
uses: niden/actions-memcached@v7
- name: Setup /etc/hosts
run: |
echo "127.0.0.1 acme.wtf" | sudo tee -a /etc/hosts
echo "127.0.0.1 lego.wtf" | sudo tee -a /etc/hosts
echo "127.0.0.1 acme.lego.wtf" | sudo tee -a /etc/hosts
echo "127.0.0.1 légô.wtf" | sudo tee -a /etc/hosts
echo "127.0.0.1 xn--lg-bja9b.wtf" | sudo tee -a /etc/hosts
- name: Make
run: |
make
make clean
- name: Install Hugo
run: |
wget -O /tmp/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_Linux-amd64.deb
2020-12-09 19:52:21 +00:00
sudo dpkg -i /tmp/hugo.deb
- name: Build Documentation
run: make docs-build