From d526ebfa77a779a305cdf6b85a2997e3991ad985 Mon Sep 17 00:00:00 2001 From: Francisco de Borja Aranda Castillejo Date: Wed, 7 Aug 2024 15:03:21 +0200 Subject: [PATCH] ci: extend gitignore --- .github/workflows/coverage.yml | 4 ++-- .github/workflows/test.yml | 2 +- .gitignore | 1 + scripts/fmt.sh | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) 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