更改端口 #61
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: Go | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ^1.21 | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Build | |
run: | | |
bash build.sh | |
- name: start mysql / redis | |
run: | | |
sudo systemctl start mysql.service | |
sudo apt update | |
sudo apt install redis | |
sudo mysql -u root -proot -e "CREATE DATABASE IF NOT EXISTS test;" | |
- name: Test | |
run: go test -tags="redis,sqlite" -race -v ./... | |
- name: Upload a Build Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
# A file, directory or wildcard pattern that describes what to upload | |
path: cmd/authlibskin/out/* | |
name: ${{ github.run_number }} |