Bump actions/checkout from 4.1.1 to 4.1.6 (#681) #686
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: | |
- master | |
pull_request: | |
branches: | |
- master | |
types: [opened, synchronize, closed] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out slimtoolkit/slim repo | |
uses: actions/checkout@v4.1.6 | |
- name: Set up Go development environment | |
uses: actions/setup-go@v5.0.1 | |
with: | |
go-version: '1.21.4' | |
- name: Run tests | |
run: make test |