Skip to content

use github action to setup env #4

use github action to setup env

use github action to setup env #4

Workflow file for this run

name: "Test and Build"
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Setup env"
uses: JRMurr/direnv-nix-action@v4.1.0
- name: "Install python dependencies"
run: poetry install
shell: bash
- name: "Test"
run: poetry run python -m unittest tests/**.py
shell: bash