Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
gipsyh committed Jan 3, 2025
1 parent e426a5e commit 627e695
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
name: Build
name: CI

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

env:
CARGO_TERM_COLOR: always

jobs:
build:

CI:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: jwlawson/[email protected]
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: Initialize and update submodules
run: git submodule update --init --recursive
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- uses: actions/checkout@v4
- uses: jwlawson/[email protected]
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: Pull submodules
run: git submodule update --init --recursive
- name: Build
run: cargo build
- name: Run test
run: cargo test
- name: Format check
run: cargo fmt --check

0 comments on commit 627e695

Please sign in to comment.