8000 Do not display Feedly account type in AccountSelectionDialog · readrops/Readrops@d15d35b · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Do not display Feedly account type in AccountSelectionDialog #890

Do not display Feedly account type in AccountSelectionDialog

Do not display Feedly account type in AccountSelectionDialog #890

Workflow file for this run

name: Android CI
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: set up JDK 1.17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Enable KVM
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
sudo udevadm control --reload-rules
sudo udevadm trigger --name-match=kvm
- name: Android Emulator Runner
uses: ReactiveCircus/android-emulator-runner@v2.33.0
with:
api-level: 29
script: ./gradlew clean build connectedCheck jacocoFullReport
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./build/reports/jacoco/jacocoFullReport/jacocoFullReport.xml
fail_ci_if_error: true
verbose: true
0