Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Suraj Kumar Sau authored Aug 28, 2023
2 parents 3ecd848 + d7468db commit 376d054
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 1 deletion.
40 changes: 40 additions & 0 deletions .github/workflows/Analyze.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Analyze

on:
pull_request:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'java' ]

steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3

- uses: ./.github/actions/setup-java

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}

- name: Build project
run: ./gradlew :app-android:assemble --stacktrace

- name: Perform analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"images" : [
{
"filename" : "bookmarks.pdf",
"filename" : "trailing-icon 2.pdf",
"idiom" : "universal"
}
],
Expand Down
Binary file not shown.
Binary file not shown.
2 changes: 2 additions & 0 deletions app-ios/Modules/Sources/Timetable/TimetableView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,13 @@ public struct TimetableView<SessionView: View>: View {
NavigationLink(value: TimetableRouting.search) {
Assets.Icons.search.swiftUIImage
}
.buttonStyle(.plain)
}
ToolbarItem {
NavigationLink(value: TimetableRouting.bookmark) {
Assets.Icons.bookmarks.swiftUIImage
}
.buttonStyle(.plain)
}
ToolbarItem {
Assets.Icons.gridView.swiftUIImage
Expand Down

0 comments on commit 376d054

Please sign in to comment.