diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 73cecc6..5b88cdf 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -4,7 +4,7 @@ on: pull_request: jobs: - Lint: + lint: runs-on: ubuntu-latest steps: @@ -24,7 +24,7 @@ jobs: - name: Analyze Formatting run: flutter analyze lib test - Test: + test: runs-on: ubuntu-latest env: RUNNER_TOOL_CACHE: /toolcache diff --git a/.gitea/workflows/push.yaml b/.gitea/workflows/push.yaml index 8c25752..dfcee5f 100644 --- a/.gitea/workflows/push.yaml +++ b/.gitea/workflows/push.yaml @@ -7,7 +7,7 @@ on: - "main" jobs: - Test: + test: runs-on: ubuntu-latest steps: - name: Checkout code @@ -26,7 +26,7 @@ jobs: - name: Run tests run: flutter test - Format: + format: runs-on: ubuntu-latest steps: - name: Checkout code @@ -71,7 +71,7 @@ jobs: - name: Verify format run: flutter analyze lib test - Update Version: + update_version: runs-on: ubuntu-latest needs: Format if: gitea.ref == 'refs/heads/development'