mirror of
https://github.com/IlanCosman/tide.git
synced 2024-12-21 02:51:50 +03:00
31 lines
729 B
YAML
31 lines
729 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
# Checks-out repository under $GITHUB_WORKSPACE
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install dependencies
|
|
run: sudo apt-get install -y fish curl git
|
|
|
|
- name: Install Tide unattended
|
|
shell: fish {0}
|
|
run: source "$GITHUB_WORKSPACE/tools/tide_install.fish" && tide_install -lu "$GITHUB_WORKSPACE"
|
|
|
|
- name: Install testing dependencies
|
|
shell: fish {0}
|
|
run: sudo apt-get install -y python3 python3-venv
|
|
|
|
- name: Install fisher and fishtape
|
|
shell: fish {0}
|
|
run: tide test -i
|
|
|
|
- name: Run all tests
|
|
shell: fish {0}
|
|
run: tide test -a
|