Skip to content

chore: bump fable-library from 5.0.0a17 to 5.0.0a19 #283

chore: bump fable-library from 5.0.0a17 to 5.0.0a19

chore: bump fable-library from 5.0.0a17 to 5.0.0a19 #283

Workflow file for this run

name: Build and Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v6
with:
python-version: '3.10'
- name: Setup .NET Core
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
6.x
8.x
9.x
- name: Install just
uses: extractions/setup-just@v2
- name: Restore dependencies
run: just restore
- name: Install Python dependencies
run: |
pipx install uv
just install-python
#- name: Check formatting
# run: just format-check
- name: Build
run: just build
- name: Test
run: just test