Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Adicionar Github Actions #137

Open
gitrubs opened this issue Jan 28, 2020 · 0 comments · Fixed by #140
Open

[CI] Adicionar Github Actions #137

gitrubs opened this issue Jan 28, 2020 · 0 comments · Fixed by #140
Assignees
Milestone

Comments

@gitrubs
Copy link
Contributor

gitrubs commented Jan 28, 2020

Descrição

Adicionar workflow básico do github actions com teste executado pelo gradle

Requisitos

Máquina: ubuntu-latest
Versão do Java: 1.8

Sintaxe de exemplo

name: Run Tests
on: [push]
jobs:
  test:
    name: Test Job
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - name: Set up JDK 1.8
      uses: actions/setup-java@v1
      with:
        java-version: 1.8
    - name: Grant execute permission for gradlew
      run: chmod +x gradlew
    - name: Gradle test
      run: gradlew test
@gitrubs gitrubs added this to the CI & CD milestone Jan 28, 2020
@gitrubs gitrubs self-assigned this Feb 3, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant