-
-
Notifications
You must be signed in to change notification settings - Fork 59
28 lines (23 loc) · 795 Bytes
/
Copy pathci-workflow.yml
File metadata and controls
28 lines (23 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Run tests
on: [push]
jobs:
build_and_run:
name: Build and run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
lfs: true
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '25'
- name: Build && Run
run: |
deployer_url="https://raw.githubusercontent.com/Insality/defold-deployer/6/deployer.sh"
curl -s ${deployer_url} | bash -s lbd --headless --settings ./test/test.ini
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: insality/druid