Skip to content

feat(pt-BR): add number parsing support and ordinal numeric formatting #1048

feat(pt-BR): add number parsing support and ordinal numeric formatting

feat(pt-BR): add number parsing support and ordinal numeric formatting #1048

Workflow file for this run

# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL Advanced"
on:
push:
branches:
- main
- 'rel/**'
pull_request:
branches:
- main
- 'rel/**'
schedule:
- cron: '41 11 * * 2'
jobs:
analyze:
name: Analyze C#
runs-on: 'windows-latest'
permissions:
security-events: write
packages: read
actions: read
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
# Add any setup steps before running the `github/codeql-action/init` action.
# This includes steps like installing compilers or runtimes (`actions/setup-node`
# or others). This is typically only required for manual builds.
# - name: Setup runtime (example)
# uses: actions/setup-example@v1
- uses: actions/setup-dotnet@v5
with:
global-json-file: global.json
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: csharp
build-mode: manual
config-file: .github/codeql/codeql-config.yml
- name: Build
working-directory: src
shell: pwsh
run: |
dotnet build Humanizer/Humanizer.csproj -c Release --nologo --verbosity minimal
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3