mirror of
https://github.com/chubin/cheat.sh.git
synced 2026-06-20 21:26:44 +02:00
24 lines
446 B
YAML
24 lines
446 B
YAML
name: Ubuntu Tests
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
schedule:
|
|
- cron: '0 9 * * 4'
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: install dependencies
|
|
run: pip install --upgrade -r requirements.txt
|
|
- name: fetch upstream cheat sheets
|
|
run: python lib/fetch.py fetch-all
|
|
- name: run tests
|
|
run: bash tests/run-tests.sh
|