Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin' into az/integrate-prettier-with…
Browse files Browse the repository at this point in the history
…-eslint
  • Loading branch information
Zewasik committed Oct 22, 2024
2 parents 461a7e3 + 66eb0dc commit ee0bcde
Show file tree
Hide file tree
Showing 510 changed files with 87,114 additions and 76 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@

*.cs text diff=csharp
*.rs text diff=rust
*.toml text
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ updates:
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "nuget"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "github-actions"
directory: "."
schedule:
Expand Down
40 changes: 40 additions & 0 deletions .github/workflows/ci-net.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: CI (.Net)

on:
push:
branches:
- master
paths:
- '.github/workflows/ci-net.yml'
- 'net/**'
- 'Sales.Net.sln'

pull_request:
paths:
- '.github/workflows/ci-net.yml'
- 'net/**'
- 'Sales.Net.sln'

jobs:
check:
runs-on: ubuntu-latest
defaults:
run:
shell: bash

steps:
- name: Check Out Source
uses: actions/checkout@v4

- name: Set Up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x

- name: Restore Solution
run: >-
dotnet restore
- name: Build Solution
run: >-
dotnet build --no-restore
24 changes: 18 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,25 @@ name: CI (Rust)
on:
push:
branches: [master]
paths-ignore:
- 'net/**'
- 'Sails.Net.sln'
paths:
- '.cargo/**'
- '.github/workflows/ci.yml'
- 'examples/**'
- 'rs/**'
- 'templates/**'
- 'Cargo.lock'
- 'Cargo.toml'
- 'rust-toolchain.toml'
pull_request:
paths-ignore:
- 'net/**'
- 'Sails.Net.sln'
paths:
- '.cargo/**'
- '.github/workflows/ci.yml'
- 'examples/**'
- 'rs/**'
- 'templates/**'
- 'Cargo.lock'
- 'Cargo.toml'
- 'rust-toolchain.toml'

env:
BINARYEN_VERSION: version_111
Expand Down
Loading

0 comments on commit ee0bcde

Please sign in to comment.