Skip to content

Commit

Permalink
updated license requirements and workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
chenkasirer committed Jun 14, 2024
1 parent da4eddc commit e83cd93
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 57 deletions.
20 changes: 15 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,26 @@ on:

jobs:
build:
if: "!contains(github.event.pull_request.labels.*.name, 'docs-only')"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python: ['3.8', '3.9', '3.10']

steps:
- uses: compas-dev/compas-actions.build@v3
- name: Checkout
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v3
with:
python: ${{ matrix.python }}
invoke_lint: true
invoke_test: true
python-version: ${{ matrix.python }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run tests
run: pytest

19 changes: 0 additions & 19 deletions .github/workflows/docs.yml

This file was deleted.

30 changes: 0 additions & 30 deletions .github/workflows/release.yml

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License


Copyright (c) 2024 Gramazio Kohler Research

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
pytest-mock
attrs >=17.4
black >=22.12.0
bump-my-version
Expand Down
2 changes: 0 additions & 2 deletions tests/test_placeholder.py

This file was deleted.

6 changes: 6 additions & 0 deletions tests/test_trivial.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from installlib.flow import Sequence
from installlib.flow import Resource


def test_placeholder():
assert Sequence()

0 comments on commit e83cd93

Please sign in to comment.