first attempt at CI #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- ci | |
schedule: | |
- cron: '0 0 * * 3' # Every Wednesday at 00:00 UTC | |
jobs: | |
build: | |
runs-on: debian:latest | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Update and install curl | |
run: | | |
apt-get update | |
apt-get install -y curl | |
- name: Entrypoint for setup | |
run: | | |
curl -sSL curl -sSL https://raw.githubusercontent.com/EricDriussi/host-your-own/ci/init.sh | bash |