Skip to content

Commit

Permalink
Merge branch 'main' into ci/enable-codeql
Browse files Browse the repository at this point in the history
  • Loading branch information
axi92 authored Sep 13, 2024
2 parents 64b5507 + dd8fc9f commit 2eac34a
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: Build
name: build
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
Build-Android:
build_android:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -27,7 +27,7 @@ jobs:
key: androidSdk
- name: Build android
run: cd example/ && flutter build apk
Build-Ios:
build_ios:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -57,4 +57,4 @@ jobs:
- name: Build ios
run: cd example/ && flutter build ios --simulator
env:
DEVELOPER_DIR: /Applications/Xcode_15.4.app
DEVELOPER_DIR: /Applications/Xcode_15.4.app
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: Dart lint
name: lint
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
Analyze_sources:
lint_dart:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Semantic PR Title'
name: semantic

on:
pull_request_target:
Expand All @@ -12,7 +12,7 @@ permissions:
pull-requests: read

jobs:
main:
semantic_pr:
name: Validate PR title
runs-on: ubuntu-latest
steps:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# https://github.com/dorny/test-reporter?tab=readme-ov-file#recommended-setup-for-public-repositories
name: 'Test Report'
name: test-report
on:
workflow_run:
workflows: ['Test']
workflows: ['test']
types:
- completed
permissions:
contents: read
actions: read
checks: write
jobs:
report:
test-report_dart:
runs-on: ubuntu-latest
steps:
- uses: dorny/test-reporter@v1
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: Test
name: test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
Test-Web:
test_web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -17,9 +17,9 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: test-results.json
path: ./test-result.json
path: ./test-results.json

Test-Android:
test_android:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Run Tests
run: make test-android

Test-Ios:
test_ios:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 2eac34a

Please sign in to comment.