Skip to content

fixed gh actin publish #12

fixed gh actin publish

fixed gh actin publish #12

Workflow file for this run

name: xyzcad
on:
push:
branches: [ "master", "ci" ]
pull_request:
branches: [ "master", "ci" ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install dependencies
run: |
python3 -m pip install poetry
sudo apt-get install -y libadmesh-dev
poetry install
- name: Lint with black and isort
run: |
make lint
- name: Test with pytest
run: |
make test