ci: github actions #1
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: tests | ||
on: [push, pull_request] | ||
jobs: | ||
tests: | ||
name: Tests | ||
runs-on: macos-latest | ||
steps: | ||
- name: Checkout poptimizer | ||
uses: actions/checkout@v3 | ||
- name: Install go-task | ||
run: | ||
brew install go-task | ||
- name: Setup venv, install tools and dependencies | ||
run: | ||
task setup | ||
- name:Lint and test | ||
run: | ||
task test |