Allow to predefine login actions #379
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: 🧪 Unit testing | |
on: | |
push: { branches: [main] } | |
pull_request: { branches: [main] } | |
jobs: | |
unit-testing: | |
name: Test the code | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Install go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.19' | |
- name: Install dependencies | |
run: go mod download | |
- name: Test the code | |
run: go test ./... |