Merge branch 'Rework_network_config' into release4.0.0-preview #29
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: General check | |
| on: push | |
| jobs: | |
| lint: | |
| name: Run linter | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-python@master | |
| with: | |
| python-version: "3.12" | |
| - run: | | |
| make install | |
| make lint | |
| tests: | |
| name: Run tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-python@master | |
| with: | |
| python-version: "3.12" | |
| - run: | | |
| make install | |
| make test-deps | |
| make tests | |
| examples: | |
| name: Run examples | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-python@master | |
| with: | |
| python-version: "3.12" | |
| - run: | | |
| make install | |
| make examples |