Update FUNDING.yml #34
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: test & release | |
on: push | |
jobs: | |
test: | |
name: test & release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python3 -m pip install --upgrade pip | |
pip3 install -r requirements.txt | |
- name: Test | |
run: python3 -m unittest ns_schedule_test | |
- name: Build artifact | |
if: startsWith(github.ref, 'refs/tags/') | |
run: make build | |
- name: Create release | |
if: startsWith(github.ref, 'refs/tags/') | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: '*.alfred5workflow' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |