commit a2cd9c548dc2dd5736b5f2466f976177d0e45903
parent d330680f391a9bd2439a6be8814c38a781048f92
Author: Erik Loualiche <[email protected]>
Date: Thu, 19 Jun 2025 16:40:45 -0500
linting
Diffstat:
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml
@@ -1,18 +1,19 @@
+---
name: CI
on:
push:
branches:
- main
- tags: ["*"]
- pull_request:
+ tags:
+ - "*"
+ pull_request: null
concurrency:
- # Skip intermediate builds: always.
- # Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
test:
- name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
+ name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{
+ github.event_name }}
runs-on: ${{ matrix.os }}
env:
WRDS_USERNAME: ${{ secrets.WRDS_USERNAME }}
@@ -21,8 +22,8 @@ jobs:
fail-fast: false
matrix:
version:
- - '1.11'
- - 'nightly'
+ - "1.11"
+ - nightly
os:
- ubuntu-latest
arch:
@@ -39,6 +40,6 @@ jobs:
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v5
with:
- token: ${{ secrets.CODECOV_TOKEN }} # required
+ token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
file: lcov.info