aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/tests.yml
blob: ae5fffefebd705660cc5fe1fde8e3602db9e622e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Tests and Build exe
on: push
env:
  GITHUB_ACTIONS_RUNNER: runner
jobs:
  tests:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-python@v1
        with:
          python-version: 3.8
          architecture: x64
      - run: pip install nox==2019.11.9
      - run: pip install poetry==1.0.5
      - run: nox

  build:
    runs-on: windows-latest

    steps:
      - uses: actions/checkout@v2
      - name: Set up Python 3.7
        uses: actions/setup-python@v1
        with:
          python-version: 3.7
          architecture: x64
      - name: Install dependencies
        run: |
          pip install poetry==1.0.5
          poetry install
      - name: Build with pyinstaller
        run: pyinstaller cli.py --name "dm" --onefile