Skip to content
Open
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
46 changes: 46 additions & 0 deletions .github/workflows/checkout.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# This is a basic workflow to help you get started with Actions

name: CI

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Setup
run: |
mkdir -p ~/workspace
wget -nv https://raw.githubusercontent.com/RoboAG/bash_roboag/master/checkout.sh
chmod u+x checkout.sh
cp checkout.sh ~/workspace/

- name: Checkout
run: |
bash -c "shopt -s expand_aliases; cd ~/workspace/ && ./checkout.sh --yes"

- name: Clone RoboAG
run: |
bash -c "shopt -s expand_aliases; source ~/workspace/bash/master/roboag/bashrc.sh; repo_clone_roboag"

- name: Display Help
run: |
bash -c "
shopt -s expand_aliases
source ~/workspace/bash/master/roboag/bashrc.sh
robo_help_daily
"
23 changes: 0 additions & 23 deletions .travis.yml

This file was deleted.