Skip to content

Commit

Permalink
Remove unwanted apt sources
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Nov 5, 2020
1 parent 3bf9352 commit 54745d2
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 19 deletions.
24 changes: 12 additions & 12 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
version: 2
updates:
- package-ecosystem: pip
directory: "/"
schedule:
interval: daily
time: '02:00'
open-pull-requests-limit: 99
allow:
- dependency-type: direct
ignore:
- dependency-name: none
versions:
- ">= 0"
- package-ecosystem: pip
directory: '/'
schedule:
interval: daily
time: '02:00'
open-pull-requests-limit: 99
allow:
- dependency-type: direct
ignore:
- dependency-name: none
versions:
- '>= 0'
1 change: 0 additions & 1 deletion .github/workflows/backport.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
---

name: Backport

on:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
---

name: Continuous integration

on:
Expand All @@ -19,8 +18,10 @@ jobs:
steps:
- uses: actions/checkout@v1

- run: sudo apt update
- run: sudo apt install python3-wheel python3-setuptools libpq-dev
- run: |
sudo rm /etc/apt/sources.list.d/*.list
sudo apt update
sudo apt install python3-wheel python3-setuptools libpq-dev
- run: python3 -m pip install --requirement=requirements.txt
- run: python3 -m pip install --requirement=requirements-dev.txt
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
---

name: "CodeQL scanning"
name: 'CodeQL scanning'

on:
push:
pull_request:

jobs:
codeql:
name: "CodeQL scanning"
name: 'CodeQL scanning'
runs-on: ubuntu-latest

steps:
Expand Down

0 comments on commit 54745d2

Please sign in to comment.