Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 17 additions & 12 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,24 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.22
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.22

- name: chmod
run: chmod +x ./setup-test.sh
- name: Configure Git
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "anymail@example.com"

- name: setup tests
run: ./setup-test.sh
- name: chmod
run: chmod +x ./setup-test.sh

- name: Run tests
run: go test ./...
- name: setup tests
run: ./setup-test.sh

- name: Run tests
run: go test ./...