chore(Dockerfile): apt -> apt-get (#50) #150
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: Development pipeline | |
| on: | |
| push: | |
| paths-ignore: | |
| - ".gitignore" | |
| - "README.md" | |
| - "docs/**" | |
| pull_request: | |
| paths-ignore: | |
| - ".gitignore" | |
| - "README.md" | |
| - "docs/**" | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| python-version: ["3.9", "3.10"] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
| if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; fi | |
| - name: Setup environment | |
| run: | | |
| mv config/settings.yaml.dist config/settings.yaml | |
| - name: Lint with pylint | |
| run: | | |
| pylint main.py module | |
| # - name: Test with pytest | |
| # run: | | |
| # pytest tests/unit/ |