Skip to content

ci: bump actions

ci: bump actions #98

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4gs
- name: Set up Python
id: setup-python
uses: actions/setup-python@v5
- name: Cache virtualenv
id: cache-venv
uses: actions/cache@v4
with:
path: .venv
key: ${{ runner.os }}-py${{ steps.setup-python.outputs.python-version }}-venv
- name: make test
run: make test