This repository has been archived by the owner on Mar 12, 2024. It is now read-only.
spelling #101
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: For each commit and PR | |
on: | |
push: | |
pull_request: | |
jobs: | |
validation: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Install Deps | |
run: | | |
npm install --global [email protected] | |
pip install poetry | |
# Install gnome-keyring to get around a funky dependency. | |
# https://github.com/Foundry376/Mailspring/issues/681 | |
sudo apt-get install gnome-keyring | |
- name: Run Checks | |
run: make test | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Install Deps | |
run: | | |
pip install poetry | |
# Install gnome-keyring to get around a funky dependency. | |
# https://github.com/Foundry376/Mailspring/issues/681 | |
sudo apt-get install gnome-keyring | |
- name: Build the site | |
run: make build |