Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build

on:
push:
branches: [ "master" ]
branches: ["master", "main"]
pull_request:
branches: [ "master" ]
branches: ["master", "main"]

env:
CARGO_TERM_COLOR: always
Expand All @@ -16,8 +16,8 @@ jobs:
strategy:
fail-fast: false
matrix:
toolchain: [ nightly, stable, 1.85.0 ]
name: [ linux, windows, macos ]
toolchain: [nightly, stable, 1.85.0]
name: [linux, windows, macos]
include:
- name: linux
os: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Format code

on:
push:
branches: [ "master" ]
branches: ["master", "main"]
pull_request:
branches: [ "master" ]
branches: ["master", "main"]

env:
CARGO_TERM_COLOR: always
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Lint code

on:
push:
branches: [ "master" ]
branches: ["master", "main"]
pull_request:
branches: [ "master" ]
branches: ["master", "main"]

env:
CARGO_TERM_COLOR: always
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Run tests

on:
push:
branches: [ "master" ]
branches: ["master", "main"]
pull_request:
branches: [ "master" ]
branches: ["master", "main"]

env:
CARGO_TERM_COLOR: always
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/tmp

# will have compiled files and executables
/target
target/

# These are backup files generated by rustfmt
**/*.rs.bk
Expand Down
Loading