mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-14 19:15:41 +00:00
Use env variables rather than custom ci scripts
This commit is contained in:
5
.github/workflows/coverage.yaml
vendored
5
.github/workflows/coverage.yaml
vendored
@ -1,6 +1,6 @@
|
||||
# Perform CI checks, and calculate code coverage
|
||||
|
||||
name: Code Coverage
|
||||
name: SQLite
|
||||
|
||||
on: ["push", "pull_request"]
|
||||
|
||||
@ -10,10 +10,11 @@ jobs:
|
||||
# These tests are used for code coverage analysis
|
||||
coverage:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
INVENTREE_DB_NAME: './test_db.sqlite'
|
||||
INVENTREE_DB_ENGINE: sqlite3
|
||||
INVENTREE_DB_ENGINE: django.db.backends.sqlite3
|
||||
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
|
Reference in New Issue
Block a user