Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 0 additions & 64 deletions .circleci/config.yml

This file was deleted.

43 changes: 43 additions & 0 deletions .github/workflows/android-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Android CI

on:
push:
branches: [ master, develop ]
paths:
- 'Library/**'
- '.github/workflows/**'
pull_request:
branches: [ master ]
paths:
- 'Library/**'
- '.github/workflows/**'

jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: gradle

- name: Grant execute permission for Gradle wrapper
run: chmod +x ./gradlew

- name: Run Unit Tests
run: ./gradlew test --no-daemon --stacktrace

- name: Upload Unit Test Results
if: failure()
uses: actions/upload-artifact@v4
with:
name: unit-test-results
path: '**/build/test-results/testDebugUnitTest/*.xml'



5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@
![GitHub release (latest by date)](https://img.shields.io/github/v/release/LeandroLCD/DateTime)
![GitHub last commit](https://img.shields.io/github/last-commit/LeandroLCD/DateTime)
![GitHub issues](https://img.shields.io/github/issues/LeandroLCD/DateTime)
![Tests](https://img.shields.io/badge/tests-passing-brightgreen)
[![CircleCI](https://dl.circleci.com/status-badge/img/gh/LeandroLCD/DateTime/tree/master.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/LeandroLCD/DateTime/tree/master)
![![Android CI-CD](https://github.com/LeandroLCD/DateTime/actions/workflows/android-ci.yml/badge.svg)](https://github.com/LeandroLCD/DateTime/actions/workflows/android-ci.yml)



Una librería ligera para trabajar con fechas y tiempos en **Android**, construida sobre [ThreeTenABP](https://github.com/JakeWharton/ThreeTenABP).
Una librería ligera para trabajar con fechas y tiempos en **Android**.
Proporciona una API sencilla para manipular, formatear y comparar fechas de manera segura.

## 🚀 Instalación
Expand Down