diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 5ae78a2..a525bea 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -17,7 +17,7 @@ env: jobs: required: runs-on: ubuntu-latest - name: ubuntu / ${{ matrix.toolchain }} + name: ${{ matrix.toolchain }} strategy: matrix: # Run on stable and beta to ensure that tests won't break on the next @@ -25,7 +25,7 @@ jobs: toolchain: [ stable, beta ] coverage: runs-on: ubuntu-latest - name: ubuntu / stable / coverage + name: stable / coverage steps: - uses: actions/checkout@v4 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 140feb3..ab03027 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,7 +25,7 @@ env: jobs: required: runs-on: ubuntu-latest - name: ubuntu / ${{ matrix.toolchain }} + name: ${{ matrix.toolchain }} strategy: matrix: # Run on stable and beta to ensure that tests won't break on the next diff --git a/.gitignore b/.gitignore index f979fa7..427570f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ +.anchor/ /target **/.DS_Store diff --git a/scripts/fmt.sh b/scripts/fmt.sh index 64b6959..21baf59 100755 --- a/scripts/fmt.sh +++ b/scripts/fmt.sh @@ -19,5 +19,5 @@ cargo fmt if [[ $? == 0 ]] ; then echo "Code is formatted!" else - echo "An error occurred during formatting" + echo "An error occurred during formatting." fi