mirror of
https://github.com/Insality/druid
synced 2025-06-27 10:27:48 +02:00
Button key trigger will not consume input Update scroll position while animate Add scroll:set_view_size Better static grid get_index function Rework Data List (only static grid) Update Default style Remove a component from parent if exists on druid:remove
23 lines
646 B
YAML
23 lines
646 B
YAML
name: Run tests
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build_and_run:
|
|
name: Build and run tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
lfs: true
|
|
- uses: actions/setup-java@v1
|
|
with:
|
|
java-version: '17'
|
|
|
|
- name: Build && Run
|
|
run: |
|
|
deployer_url="https://raw.githubusercontent.com/Insality/defold-deployer/1/deployer.sh"
|
|
curl -s ${deployer_url} | bash -s lbd --headless --settings ./test/test.ini
|
|
|
|
- name: Upload test report
|
|
run: bash <(curl -s https://codecov.io/bash) |