Skip to content

Refactor: new authentication code (remove OAuth dependency) #43

Refactor: new authentication code (remove OAuth dependency)

Refactor: new authentication code (remove OAuth dependency) #43

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Go environment
uses: actions/setup-go@v2.0.3
with:
go-version: 1.20
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test ./...
# Run functional tests and
#- name: Run a multi-line script
# run: |
# echo Add other actions to build,
# echo test, and deploy your project.