Skip to content

Instantly share code, notes, and snippets.

View raquelhortab's full-sized avatar

raquelhortab

  • Codelearn
  • Catalonia
View GitHub Profile
@raquelhortab
raquelhortab / build.gradle (app)
Last active May 2, 2024 05:35
Crashlytics migration errors
def versionMajor = 1
def versionMinor = 1
def versionPatch = 3
def versionBuild = 0
buildscript {
repositories {
mavenCentral()
// maven { url 'https://maven.fabric.io/public' }
@raquelhortab
raquelhortab / main.yml
Created February 28, 2020 07:54
automatic tests workflow main.yml (run tests when pushed to my-other-branch, using my-other-branch code)
name: CI
on:
push:
branches:
- my-other-branch # this references the branch on which a push should trigger the action
jobs:
build:
@raquelhortab
raquelhortab / action.yml
Last active May 2, 2024 05:36
action.yml for github action to automate tests
# action.yml
name: 'Hello World'
description: 'Run tests'
runs:
using: 'docker'
# this corresponds to the location of the dockerfile, relative to your action's folder (automatic-tests here)
image: '../../../Dockerfile'
@raquelhortab
raquelhortab / main.yml
Last active May 2, 2024 05:35
Main workflow for test automation with github actions
name: CI
# this will fire the action on any push to the master branch, you can modify the branch or adapt it to be fired on other events (eg. pull requests)
on:
push:
branches:
- master
jobs:
build: