Skip to content

Commit

Permalink
ci: fix the mysql parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
averissimo committed Sep 1, 2023
1 parent 07d5804 commit a172302
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
on: push

name: Test Coverage 📔
name: Extended checks & Coverage

jobs:
main:
name: Test Coverage 📔
test-coverage:
name: Extended checks 🛠 & Coverage 📔

runs-on: ubuntu-latest

Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
DB_PASSWORD: ${{ secrets.DB_PASSWORD }}
run: |
sudo /etc/init.d/mysql start
mysql -e "CREATE DATABASE IF NOT EXISTS $TEST_MARIADB_USER;" -u$DB_USER -p$TEST_MARIADB_PASSWORD
mysql -e "CREATE DATABASE IF NOT EXISTS TEST_MARIADB_DBNAME;" -u$TEST_MARIADB_USER -p$TEST_MARIADB_PASSWORD
- name: R CMD check
if: always()
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,15 @@ jobs:
uses: r-lib/actions/check-r-package@v2
with:
error-on: '"note"'

linter:
steps:
################################
# Run Linter against code base #
################################
- name: Lint Code Base
uses: super-linter/super-linter/slim@v5
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit a172302

Please sign in to comment.