Add Korean(ko) translations (#57) #62
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Coverage | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
container: | |
image: google/dart:latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Collect coverage | |
run: | | |
pub get | |
pub global activate coverage | |
pub global run coverage:test_with_coverage | |
- uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: coverage/lcov.info |