feat: add api to get hostname of ssl session #297
Workflow file for this run
This file contains hidden or 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: lint | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Get dependencies | |
run: | | |
sudo apt install -y luarocks | |
sudo luarocks install luacheck > build.log 2>&1 || (cat build.log && exit 1) | |
- name: Script | |
run: | | |
luacheck . |