docs: added not about docker daily rebuild #21
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: Tests | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Go ${{ matrix.go-version }} | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22.x' | |
- name: Install dependencies | |
run: | | |
sudo apt-get install -y git | |
git clone https://github.com/magefile/mage | |
cd mage && go run bootstrap.go | |
cd .. | |
- name: Test | |
run: mage test:run |