Revert "Add option to logout all previous JWTS" #1709
Workflow file for this run
This file contains 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: CI | |
on: [pull_request] | |
env: | |
GO_VERSION: 1.18 | |
jobs: | |
build: | |
name: Build and Setup | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build | |
uses: ./.github/actions/build | |
with: | |
go_version: ${{ env.GO_VERSION }} | |
lint: | |
name: Lint and more checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Lint and more checks | |
uses: ./.github/actions/lint | |
with: | |
go_version: ${{ env.GO_VERSION }} | |
test: | |
name: Run Tests | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: read | |
checks: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run Tests | |
uses: ./.github/actions/tests | |
with: | |
go_version: ${{ env.GO_VERSION }} | |
min_coverage: 100 |