mirror of
https://github.com/chubin/cheat.sh.git
synced 2026-06-20 13:16:44 +02:00
22 lines
401 B
YAML
22 lines
401 B
YAML
name: Ubuntu Tests
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: install dependencies
|
|
run: pip3 install -r requirements.txt
|
|
- name: fetch upstream cheat sheets
|
|
run: python3 lib/fetch.py fetch-all
|
|
- name: run tests
|
|
run: bash tests/run-tests.sh
|