style(ci): normalize yaml quoting and spacing

This commit is contained in:
zarazaex69
2026-05-16 02:06:51 +03:00
parent 5ec58bee98
commit 70fe69c909

View File

@@ -3,7 +3,7 @@ name: CI
on:
push:
pull_request:
branches: [ "main", "master" ]
branches: ["main", "master"]
jobs:
test:
@@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25.x'
go-version: "1.25.x"
- name: Run tests
run: go test -count=1 ./...
@@ -33,7 +33,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25.x'
go-version: "1.25.x"
- name: Run tests with coverage
run: go test -count=1 ./... --cover
@@ -50,7 +50,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25.x'
go-version: "1.25.x"
- name: Install media tools
run: sudo apt-get update && sudo apt-get install -y ffmpeg
@@ -69,12 +69,12 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25.x'
go-version: "1.25.x"
- name: golangci-lint
run: |
go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@latest
@@ -87,18 +87,18 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25.x'
go-version: "1.25.x"
- name: Install Mage
run: go install github.com/magefile/mage@latest
- name: Build CLI (Cross)
run: mage cross
- name: Upload CLI Artifacts
uses: actions/upload-artifact@v4
with:
@@ -112,29 +112,29 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25.x'
go-version: "1.25.x"
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
distribution: "temurin"
java-version: "17"
- name: Install gomobile
run: |
go install golang.org/x/mobile/cmd/gomobile@latest
gomobile init
- name: Install Mage
run: go install github.com/magefile/mage@latest
- name: Build Mobile
run: mage mobile
- name: Upload Android Artifact
uses: actions/upload-artifact@v4
with: