From 70fe69c90913b6177a2e283fc40572681aecea04 Mon Sep 17 00:00:00 2001 From: zarazaex69 Date: Sat, 16 May 2026 02:06:51 +0300 Subject: [PATCH] style(ci): normalize yaml quoting and spacing --- .github/workflows/ci.yml | 42 ++++++++++++++++++++-------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d0a0648..6132f5a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: