Bump github.com/emersion/go-smtp from 0.20.2 to 0.21.0 #111
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: Integration Tests | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, edited] | |
branches: | |
- main | |
jobs: | |
run_test: | |
name: Run integration tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: '0' | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Restore Go cache | |
uses: actions/cache@v1 | |
id: cache | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
${{ runner.os }}-go- | |
- name: Setup Golang | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.21.x' | |
- name: Run make test | |
run: | | |
make test |