Skip to content

Add Sessin Base Authentication with Redis Store #4

Add Sessin Base Authentication with Redis Store

Add Sessin Base Authentication with Redis Store #4

Workflow file for this run

name: CI
on:
pull_request:
branches:
- "*"
push:
branches:
- master
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build
run: go build -v ./...
- name: Run checks
run: |
make ci
# - name: Test
# run: go test -v ./...