Skip to content

Commit

Permalink
ci: use actions/setup-go to to setup go
Browse files Browse the repository at this point in the history
  • Loading branch information
ToruNiina committed Jun 16, 2024
1 parent 5dcbec0 commit 51805ba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/toml-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
- name: Install
run: |
sudo apt update
sudo apt install -y ${{ matrix.compiler }} golang-go
sudo apt install -y ${{ matrix.compiler }}
- name: Setup Go
uses: actions/setup-go@v5
- name: Configure
run: |
cmake -B build/ -DCMAKE_CXX_COMPILER=${{ matrix.compiler }} -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DTOML11_BUILD_TOML_TESTS=ON
Expand Down

0 comments on commit 51805ba

Please sign in to comment.