-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (38 loc) · 1.34 KB
/
test-suite.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Simple workflow for deploying static content to GitHub Pages
name: Run Test Suite
on:
# Runs on pushes targeting the default branch
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Sets permissions of the GITHUB_TOKEN
permissions: write-all
jobs:
test-suite:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/[email protected]
with:
# Version range or exact version of Python or PyPy to use, using SemVer's version range syntax. Reads from .python-version if unset.
python-version: '3.11'
# File containing the Python version to use. Example: .python-version
# python-version-file: # optional
- name: Setup just
uses: extractions/setup-just@v1
- name: Installing Dependencies
run: just dev install
- name: Running Formatter
run: just format
# - name: Running Type Checking
# run: just type-checks
- name: Running Linter
run: just lint
- name: Running Unit Tests
run: just unit-test