mirror of
https://github.com/ru-de/faq.git
synced 2024-11-08 19:51:01 +00:00
9788ccd5e1
* github actions ci * github actions ci * github actions ci * github actions ci * github actions ci * github actions ci * no deprecation * debug * debug * debug * fix * fix * fix * fix * fix * forgotten files * fix * fix * fix * fix * oganize everything related to ci in one folder * add check * fix path * get changed files * try this env * expected codes file moved * test check * test check * test check * docker for local test ci and fix dict download * local setup and some updates * rollback * right email
24 lines
522 B
YAML
24 lines
522 B
YAML
name: Continious integration
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
spell_and_dead_links_checks:
|
|
if: github.repository == 'ru-de/faq'
|
|
runs-on: ubuntu-18.04
|
|
steps:
|
|
- uses: actions/setup-go@v2
|
|
with:
|
|
stable: 'false'
|
|
go-version: '1.15.4'
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 1
|
|
- name: Install utils
|
|
run: |
|
|
sudo bash files/ci/check-install.sh
|
|
- name: Check spell and dead links
|
|
run: |
|
|
bash files/ci/check.sh
|