From 072bc356ef6cf3d55927fc403e5410f6cff307d0 Mon Sep 17 00:00:00 2001 From: Ari Archer Date: Thu, 7 Apr 2022 22:35:08 +0300 Subject: [PATCH] update @ Thu 7 Apr 22:35:08 EEST 2022 Signed-off-by: Ari Archer --- .github/workflows/build.yml | 30 ------------------------------ .github/workflows/typecheck.yml | 30 ------------------------------ 2 files changed, 60 deletions(-) delete mode 100644 .github/workflows/build.yml delete mode 100644 .github/workflows/typecheck.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 86df39e..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Test if the site builds - -on: - push: - branches: [main] - pull_request: - branches: [main] - -jobs: - build: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: [3.8] - - steps: - - uses: actions/checkout@v2 - - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 - with: - python-version: ${{ matrix.python-version }} - - - name: Install requirements - run: | - pip install -r requirements.txt - - - name: Build static site - run: | - CI_BUILD=1 python3 scripts/blog static diff --git a/.github/workflows/typecheck.yml b/.github/workflows/typecheck.yml deleted file mode 100644 index 6d936ee..0000000 --- a/.github/workflows/typecheck.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Static python type-checking - -on: - push: - branches: [main] - pull_request: - branches: [main] - -jobs: - build: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: [3.8] - - steps: - - uses: actions/checkout@v2 - - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 - with: - python-version: ${{ matrix.python-version }} - - - name: Install mypy - run: | - pip install mypy - - - name: Run mypy - run: | - mypy scripts/blog