Skip to content

fr826

fr826 #3

Workflow file for this run

name: fr826
on:
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
target:
- os: "ubuntu-latest"
architecture: "x64"
- os: "ubuntu-latest"
architecture: "x86"
defaults:
run:
shell: bash
runs-on: ${{ matrix.target.os }}
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@v5
id: setup-python
with:
python-version: "3.11"
architecture: ${{ matrix.target.architecture }}
cache: "poetry"