Skip to content

Implement HTTP/HTTPS including permanent redirect #1270

Implement HTTP/HTTPS including permanent redirect

Implement HTTP/HTTPS including permanent redirect #1270

Workflow file for this run

name: Tornjak CI
on: [push, pull_request]
jobs:
tornjak-build:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v2
- name: Install Golang
uses: actions/setup-go@v3
with:
go-version: '1.20'
- uses: actions/setup-node@v2
with:
node-version: '15'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.53
args: --timeout 7m
- name: Run make all
run: make all
- run: echo "🍏 This job's status is ${{ job.status }}."