Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
xiwenc committed Sep 12, 2024
1 parent 43c496e commit 743d2ce
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Continuous Integration

on:
push:
branches:
- "*"
pull_request:
branches: [ main ]

jobs:

Rules:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup dotnet ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: "8.x"

- name: Display dotnet version
run: dotnet --version

- name: Compile
run: make
2 changes: 1 addition & 1 deletion wwwroot/api
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@
"testcases": []
}
],
"policies": [
"rules": [
{
"title": "Business apps must always require login",
"description": "No anonymous means every user must have valid login session or credentials",
Expand Down
2 changes: 1 addition & 1 deletion wwwroot/index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<html lang="en">

<head>
<title>Linting</title>
<title>MxLint</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="pico-v2.0.6.css">
<link rel="stylesheet" href="pico.colors-v2.0.6.css">
Expand Down

0 comments on commit 743d2ce

Please sign in to comment.