From 36efc1fc8ab38c209ece921e04c72579d27479f0 Mon Sep 17 00:00:00 2001 From: rocky Date: Thu, 21 Oct 2021 14:18:56 -0400 Subject: [PATCH] Try 1st workflows CI --- .github/workflows/ubuntu.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/ubuntu.yml diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml new file mode 100644 index 00000000..3dcf903c --- /dev/null +++ b/.github/workflows/ubuntu.yml @@ -0,0 +1,30 @@ +name: uncompyle6 (ubuntu) + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: [3.6, 3.7, 3.8] + steps: + - uses: actions/checkout@v2 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -e . + - name: Install prerequisits + run: | + pip install -e . + - name: Test Mathics Scanner + run: | + make check